/* =============================================
   INGENIOUS BUDDY — FMCG AI Creative Studio
   Master Stylesheet
   ============================================= */

/* =============================================
   1. CUSTOM PROPERTIES
   ============================================= */
:root {
    --lime: #C8FF00;
    --lime-dark: #9FCC00;
    --lime-rgb: 200, 255, 0;
    --dark: #0A0A0A;
    --dark-card: #141414;
    --dark-surface: #1A1A1A;
    --dark-border: rgba(255, 255, 255, 0.08);
    --light: #FAFAFA;
    --warm: #F5F0E8;
    --white: #FFFFFF;
    
    /* Original variables needed by sections */
    --ink: #111111;
    --paper: #f4f0e8;
    --paper-hot: #fff4dd;
    --muted: #726f68;
    --line: rgba(17, 17, 17, 0.12);
    --ember: #d15734;
    --moss: #43664f;
    --violet: #6b5cff;
    --acid: #d9ff5f;
    --cyan: #43d8c9;
    --night: #090a0c;

    --text-dark: #111111;
    --text-body: #333333;
    --text-muted: #6B6B6B;
    --text-light: #FFFFFF;
    --text-light-muted: #999999;
    --border-light: rgba(0, 0, 0, 0.06);
    --font-heading: "Space Grotesk", "Manrope", sans-serif;
    --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --section-py: 120px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-pill: 50px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =============================================
   3. SCROLLBAR & SELECTION
   ============================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lime-dark);
}

::selection {
    background: var(--lime);
    color: var(--dark);
}

/* =============================================
   4. PRELOADER
   ============================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    background: var(--lime);
    border-radius: 3px;
    animation: preloaderBar 1.8s ease-in-out infinite;
}

/* =============================================
   5. TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.25rem, 6.4vw, 5rem);
    line-height: 0.95;
    font-weight: 700;
}

h2 {
    font-size: clamp(2.05rem, 3.8vw, 4.35rem);
    line-height: 1.02;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 600;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--lime);
    transform: translateY(-50%);
}

.section-dark .section-tag {
    color: var(--lime);
}

.section-light .section-tag,
.section-white .section-tag,
.section-warm .section-tag {
    color: var(--dark);
}

.section-light .section-tag::before,
.section-white .section-tag::before,
.section-warm .section-tag::before {
    background: var(--dark);
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

.text-lime {
    color: var(--lime) !important;
}

/* =============================================
   6. BUTTONS
   ============================================= */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-lime {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
}

.btn-lime:hover {
    background: transparent;
    color: var(--lime);
    border-color: var(--lime);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* =============================================
   7. NAVBAR
   ============================================= */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    z-index: 9999;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    width: 148px;
    height: 44px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    width: 132px;
    height: 39px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav {
    padding: 10px 28px;
    font-size: 0.85rem;
}

/* Custom Toggler */
.navbar-toggler {
    border: none;
    padding: 4px;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    cursor: pointer;
}

.toggler-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.toggler-icon span:nth-child(2) {
    width: 70%;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   8. HERO SECTION
   ============================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--dark);
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.4) 40%,
            rgba(10, 10, 10, 0.7) 80%,
            rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.25);
    color: var(--lime);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--lime);
    font-style: italic;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll i {
    display: block;
    font-size: 1.2rem;
    margin-top: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* =============================================
   9. PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
    background: var(--dark);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-title {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-text {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    max-width: 600px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-top: 24px;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.breadcrumb-item a {
    color: var(--lime);
}

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

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   10. SECTION STYLES
   ============================================= */
.section-padding {
    padding: var(--section-py) 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--text-light-muted);
}

.section-light {
    background: var(--light);
}

.section-warm {
    background: var(--warm);
}

.section-white {
    background: var(--white);
}

/* =============================================
   11. INTRO SECTION
   ============================================= */
.intro-section {
    border-bottom: 1px solid var(--border-light);
}

.intro-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.intro-text .highlight-text {
    color: var(--text-dark);
    font-weight: 500;
}

.intro-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.intro-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--dark);
}

/* =============================================
   12. EXPERTISE / CATEGORY CARDS
   ============================================= */
.expertise-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 380px;
}

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

.expertise-card:hover img {
    transform: scale(1.08);
}

.expertise-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 2;
}

.expertise-card-tag {
    display: inline-block;
    background: var(--lime);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.expertise-card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* =============================================
   13. SERVICE CARDS (Home Page - Compact)
   ============================================= */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 255, 0, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--lime);
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
}

.service-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =============================================
   14. SERVICE DETAIL CARDS (Services Page)
   ============================================= */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-img {
    height: 240px;
    overflow: hidden;
}

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

.service-detail-card:hover .service-detail-img img {
    transform: scale(1.05);
}

.service-detail-body {
    padding: 32px;
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--lime);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-detail-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.service-detail-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-detail-features {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.service-detail-features li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-features li i {
    color: var(--lime-dark);
    font-size: 0.75rem;
}

/* =============================================
   15. FEATURED WORK
   ============================================= */
.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    height: 420px;
}

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

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.featured-card:hover .featured-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.featured-card-category {
    display: inline-block;
    background: var(--lime);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.featured-card-title {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.featured-card-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =============================================
   16. PROCESS / HOW IT WORKS
   ============================================= */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.process-step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.process-step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.process-connector {
    position: absolute;
    top: 65px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(200, 255, 0, 0.3) 0,
            rgba(200, 255, 0, 0.3) 6px,
            transparent 6px,
            transparent 12px);
    z-index: 1;
}

/* Process Timeline (Services page — Dark BG) */
.process-timeline {
    position: relative;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark-border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 16px;
    height: 16px;
    background: var(--lime);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(200, 255, 0, 0.1);
}

.timeline-content {
    width: 44%;
    padding: 28px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
}

.timeline-step {
    display: inline-block;
    background: var(--lime);
    color: var(--dark);
    padding: 2px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =============================================
   17. STATS SECTION
   ============================================= */
.stats-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.05) 0%, transparent 70%);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* =============================================
   18. FAQ ACCORDION
   ============================================= */
.faq-section .section-header {
    max-width: 500px;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0 !important;
}

.faq-accordion .accordion-button {
    background: transparent;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: none !important;
    border-radius: 0 !important;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    width: auto;
    height: auto;
    transform: none;
    transition: var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\2212';
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: transparent;
}

.faq-accordion .accordion-body {
    padding: 0 0 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================
   19. GALLERY
   ============================================= */
.gallery-tabs {
    margin-bottom: 40px;
}

.gallery-tabs .nav-pills {
    background: var(--light);
    border-radius: var(--radius-pill);
    padding: 6px;
    display: inline-flex;
    border: 1px solid var(--border-light);
}

.gallery-tabs .nav-link {
    border-radius: var(--radius-pill);
    padding: 10px 32px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.gallery-tabs .nav-link.active {
    background: var(--dark);
    color: var(--white);
}

.gallery-filters {
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.landscape {
    aspect-ratio: 4/3;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-icon {
    width: 56px;
    height: 56px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-icon {
    transform: scale(1);
}

.gallery-item-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--lime);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
}

/* Video Gallery */
.video-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.video-gallery-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(200, 255, 0, 0.4);
}

.video-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.25);
    transition: var(--transition);
}

.video-gallery-item:hover .video-gallery-overlay {
    background: rgba(10, 10, 10, 0.4);
}

.video-gallery-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

/* Video Grid and Responsive Layout */
.video-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 991.98px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 767.98px) {
    .video-play-btn {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.15rem !important;
    }
    .video-gallery-label {
        font-size: 0.8rem !important;
        bottom: 12px !important;
        left: 12px !important;
    }
}

@media (max-width: 575.98px) {
    .video-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .video-play-btn {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.25rem !important;
    }
    .video-gallery-label {
        font-size: 0.85rem !important;
        bottom: 16px !important;
        left: 16px !important;
    }
}

/* =============================================
   20. ABOUT PAGE
   ============================================= */
.about-story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

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

.about-story-content {
    padding-left: 40px;
}

.about-values-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.about-values-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-values-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 255, 0, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    color: var(--dark);
    transition: var(--transition);
}

.about-values-card:hover .about-values-icon {
    background: var(--lime);
}

.about-values-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.about-values-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    height: 100%;
    border: 1px solid var(--border-light);
}

.vision-card-icon {
    width: 56px;
    height: 56px;
    background: var(--lime);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.vision-card-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.vision-card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* About - Creative Philosophy (Dark Section) */
.philosophy-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.philosophy-img-grid img {
    border-radius: var(--radius);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.philosophy-img-grid img:first-child {
    grid-column: span 2;
    height: 260px;
}

/* =============================================
   21. CONTACT PAGE
   ============================================= */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--light);
    transition: var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.1);
    background: var(--white);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--dark-card);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.contact-info-card:hover {
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--lime);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light-muted);
    margin-bottom: 4px;
}

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

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

.contact-info-text a:hover {
    color: var(--lime);
}

.contact-sidebar {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    height: 100%;
}

.contact-sidebar-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-sidebar-text {
    font-size: 0.95rem;
    color: var(--text-light-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
}

/* =============================================
   22. INDUSTRY CARDS (Services Page)
   ============================================= */
.industry-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

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

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.industry-card-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* =============================================
   23. CTA BANNER
   ============================================= */
.cta-banner {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   24. FOOTER
   ============================================= */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-muted);
    transition: var(--transition-fast);
}

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

.footer-heading {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-links ul li span {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: var(--lime);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--dark-border);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    margin-bottom: 0;
}

.footer-bottom-link {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    margin-left: 20px;
}

.footer-bottom-link:hover {
    color: var(--lime);
}

/* =============================================
   25. BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--lime);
    color: var(--dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(200, 255, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dark);
    color: var(--lime);
    transform: translateY(-4px);
}

/* =============================================
   26. KEYFRAME ANIMATIONS
   ============================================= */
@keyframes preloaderPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes preloaderBar {
    0% {
        width: 0;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   27. GLIGHTBOX OVERRIDES
   ============================================= */
.goverlay {
    background: rgba(10, 10, 10, 0.92) !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: rgba(200, 255, 0, 0.9) !important;
    border-radius: var(--radius-sm) !important;
}

.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
    fill: var(--dark) !important;
}

/* =============================================
   28. NEW FMCG STYLES
   ============================================= */
.hover-scale {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hover-scale:hover {
    transform: scale(1.05);
}
.hover-scale-sm {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hover-scale-sm:hover {
    transform: scale(1.02);
}
.hover-translate-up {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hover-translate-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12) !important;
}
.tracking-wide {
    letter-spacing: 2px;
}
.bg-lime {
    background-color: var(--lime) !important;
}
.text-lime {
    color: var(--lime) !important;
    text-shadow: 0 0 20px rgba(200, 255, 0, 0.4);
}

/* Enhanced Buttons */
.btn-lime {
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.25);
    border: 1px solid rgba(200, 255, 0, 0.5);
}
.btn-lime:hover {
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.5);
    background: var(--lime);
    color: var(--dark);
    border: 1px solid var(--lime);
}

/* Fix heading colors inside text-white containers */
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: #fff !important;
}

/* VS Comparison Cards Enhanced */
.comp-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.comp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
}
.comp-card.ours {
    border: 1px solid rgba(200, 255, 0, 0.15) !important;
    box-shadow: 0 20px 50px rgba(200, 255, 0, 0.08) !important;
}
.comp-card.ours:hover {
    border: 1px solid rgba(200, 255, 0, 0.4) !important;
    box-shadow: 0 25px 60px rgba(200, 255, 0, 0.15) !important;
}

/* Judge section hover effects */
.judge-hover:hover .judge-before-img {
    transform: translateY(-10px) scale(1.03);
    filter: brightness(1.1);
}
.judge-before-img {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gallery Preview Masonry Enhanced */
.gp-hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}
.gp-hover:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 2;
}
.gp-hover .gp-img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gp-hover:hover .gp-img {
    transform: scale(1.08);
}
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding-bottom: 2rem !important;
}

/* Gallery Masonry Layout */
.gp-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.gp-item {
    width: 100%;
    height: 100%;
}

.gp-item-tall {
    grid-row: span 2;
    grid-column: span 1;
}

.gp-item-standard {
    grid-row: span 1;
    grid-column: span 1;
}

.gp-item-wide {
    grid-row: span 1;
    grid-column: span 2;
}

/* Portfolio Mobile Responsiveness */
@media (max-width: 767px) {
    .gp-masonry {
        grid-template-columns: none !important;
        grid-template-rows: repeat(2, 210px) !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 82vw !important;
        gap: 16px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding: 5px 15px 25px 15px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
    }
    
    .gp-masonry::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar Chrome/Safari/Opera */
    }
    
    .gp-item {
        scroll-snap-align: start !important;
    }
    
    .gp-item-tall {
        grid-row: span 2 !important;
        grid-column: span 1 !important;
    }
    
    .gp-item-standard {
        grid-row: span 1 !important;
        grid-column: span 1 !important;
    }
    
    .gp-item-wide {
        grid-row: span 2 !important; /* Convert wide item to tall item to match horizontal flow height */
        grid-column: span 1 !important;
    }

    .gp-overlay {
        padding: 1.25rem !important;
    }

    .gp-overlay h3 {
        font-size: 1.2rem !important;
    }

    .gp-overlay h4 {
        font-size: 1.05rem !important;
    }
}

/* Badges Enhanced */
.badge.bg-lime {
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.3);
    border: 1px solid rgba(200,255,0,0.5);
}

/* Hero Ambient Orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,255,0,0.12) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(50px);
    animation: floatOrb 10s ease-in-out infinite alternate;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(40px);
    animation: floatOrb 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

/* Feature Icons Glow */
.fs-1 i.text-lime {
    filter: drop-shadow(0 0 10px rgba(200, 255, 0, 0.4));
}

/* Transform Hover Cards */
.transform-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.transform-img-after {
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}
.transform-img-before {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
}
.transform-indicator {
    transition: all 0.3s ease;
}

.transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18) !important;
}
.transform-card:hover .transform-img-after {
    opacity: 0;
    transform: scale(1.05);
}
.transform-card:hover .transform-img-before {
    transform: scale(1);
}
.transform-card:hover .transform-indicator {
    background: var(--dark) !important;
    color: var(--white) !important;
}
.transform-card:hover .transform-indicator i {
    color: var(--white) !important;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 40px) scale(1.1); }
}

/* Bounce animation for scroll arrow */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.animate-bounce {
    animation: bounce 2s infinite;
}

/* =============================================
   29. RESPONSIVE
   ============================================= */
@media (max-width: 1199.98px) {
    :root {
        --section-py: 100px;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }
    .hero-title { font-size: 4rem; }
    .page-hero-title { font-size: 3.2rem; }
    .cta-title { font-size: 3rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    :root {
        --section-py: 80px;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    .hero { min-height: 600px; }
    .hero-title { font-size: 3.2rem; }
    .hero-text { font-size: 1rem; }
    .page-hero { padding: 150px 0 60px; }
    .page-hero-title { font-size: 2.8rem; }
    .cta-title { font-size: 2.5rem; }
    .intro-title { font-size: 2.4rem; }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 16px;
        border-radius: var(--radius);
        padding: 20px;
    }

    .navbar .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid var(--dark-border);
    }

    .navbar .nav-link::after {
        display: none;
    }

    .btn-nav {
        margin-top: 12px;
        text-align: center;
        display: block;
        margin-left: 0 !important;
    }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .about-story-content { padding-left: 0; margin-top: 30px; }

    .process-timeline::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
    }

    .process-connector { display: none; }

    .contact-form-wrap { padding: 30px; }
    .contact-sidebar { padding: 30px; margin-top: 30px; }

    .philosophy-img-grid img { height: 160px; }
    .philosophy-img-grid img:first-child { height: 200px; }
}

@media (max-width: 767.98px) {
    :root {
        --section-py: 64px;
    }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .hero-title { font-size: 2.6rem; }
    .hero-tag { font-size: 0.7rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-scroll { display: none; }
    .page-hero-title { font-size: 2.2rem; }
    .cta-title { font-size: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .section-header { margin-bottom: 40px; }
    .expertise-card { height: 280px; }
    .featured-card { height: 320px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .intro-title { font-size: 2rem; }
    .footer-main { padding: 50px 0 30px; }
    .vision-card { padding: 30px 24px; }
    .contact-form-wrap { padding: 24px; }
    .industry-card { height: 220px; }
    .service-detail-img { height: 200px; }
}

@media (max-width: 575.98px) {
    .nav-logo { width: 132px; }
    .hero-content { padding-bottom: 3.5rem; }
    .hero-title { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-tabs .nav-link { padding: 8px 20px; font-size: 0.8rem; }
    .stat-item { padding: 20px 10px; }
    .btn { padding: 12px 28px; font-size: 0.88rem; }
    .btn-lg { padding: 14px 32px; font-size: 0.95rem; }
    .gallery-item-icon { width: 40px; height: 40px; font-size: 1rem; }
    .video-play-btn { width: 56px; height: 56px; font-size: 1.2rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.75rem; }
}

/* =============================================
   15. GLOBAL VISUAL ALIGNMENT FIXES
   ============================================= */
#pricingSection ul li, #pricing ul li {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
}

#pricingSection ul li i, #pricing ul li i {
    flex-shrink: 0 !important;
    margin-top: 4px !important;
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex;
    align-items: center;
    background-color: #25d366; /* WhatsApp Green */
    color: white !important;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999999 !important; /* Keep it above footer and all other elements */
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif; /* Matches your brand aesthetic */
}

.wa-text {
    display: flex;
    flex-direction: column;
    margin-right: 12px;
    text-align: right;
    line-height: 1.2;
}

.wa-label {
    font-size: 14px;
    font-weight: 700;
}

.wa-number {
    font-size: 11px;
    opacity: 0.9;
}

/* Positioning the icon to the right of the text */
.whatsapp-fab svg {
    order: 2;
}

/* Hover Effects */
.whatsapp-fab:hover {
    background-color: #1ebe57;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive adjustments */
@media (max-width: 480px) {
    .wa-number {
        display: none; /* Simplifies for very small screens */
    }
    .whatsapp-fab {
        bottom: 20px !important;
        right: 20px !important;
        padding: 8px 14px;
    }
}

/* Responsive Hero Visual Slider */
.hero-visual {
    max-width: 450px;
    aspect-ratio: 4/5;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px) {
    .hero-visual {
        margin-top: -450px;
        margin-right: 0;
    }
}