/* ----------------------------------------------------
   ADMONK CREATIVE AGENCY DESIGN SYSTEM & TYPOGRAPHY
   ---------------------------------------------------- */

/* ---- LOCAL FONT: BELIEVE ---- */
@font-face {
    font-family: 'Believe';
    src: url('Font/Believe.woff') format('woff'),
         url('Font/Believe.ttf') format('truetype'),
         url('Font/Believe.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---- LOCAL FONT: ATELIER ---- */
@font-face {
    font-family: 'Atelier';
    src: url('Font/Atelier.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---- LOCAL FONT: CALLIONS REGULAR ---- */
@font-face {
    font-family: 'Callions-Regular';
    src: url('Font/Callions-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---- LOCAL FONT: MODULAR BLACK SANS ---- */
@font-face {
    font-family: 'ModularBlackSans';
    src: url('Font/ModularBlackSans/OpenType-TT/ModularBlackSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ModularBlackSans';
    src: url('Font/ModularBlackSans/OpenType-TT/ModularBlackSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ModularBlackSans';
    src: url('Font/ModularBlackSans/OpenType-TT/ModularBlackSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ModularBlackSans';
    src: url('Font/ModularBlackSans/OpenType-TT/ModularBlackSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette - Dark Theme (default) */
    --bg-primary: #121217;
    --bg-secondary: #33333f;
    --bg-card: rgba(51, 51, 63, 0.6);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 0, 0, 0.2);
    
    --text-primary: hsl(0, 0%, 98%);
    --text-secondary: hsl(240, 4%, 75%);
    --text-muted: hsl(240, 4%, 55%);
    
    /* Accents */
    --accent: #ff0000;
    --accent-glow: rgba(255, 0, 0, 0.15);
    --accent-gold: hsl(38, 90%, 55%);
    --gradient-primary: linear-gradient(135deg, #ff0000, #ff3366);
    
    /* Fonts */
    --font-heading: 'ModularBlackSans', sans-serif;
    --font-body: 'Callions-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout */
    --header-height: 80px;
    --container-width: 1200px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease;

    /* Theme transition */
    --theme-transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
html.light-theme {
    --bg-primary: #f5f5f7;
    --bg-secondary: #e8e8f0;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(255, 0, 0, 0.3);

    --text-primary: #0f0f14;
    --text-secondary: #3a3a4a;
    --text-muted: #7a7a8a;

    --accent: #e00000;
    --accent-glow: rgba(220, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #e00000, #cc2244);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor experience */
}

@media (pointer: coarse) {
    /* Restore cursor for touch devices */
    * {
        cursor: auto;
    }
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
    transition: background-color 0.45s ease, color 0.45s ease;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Selection highlight */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

/* ----------------------------------------------------
   AMBIENT BACKGROUNDS & GRID LINES
   ---------------------------------------------------- */

.grid-lines {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.grid-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    opacity: 0.15;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--bg-secondary);
    bottom: -100px;
    right: -100px;
    opacity: 0.25;
}

/* ----------------------------------------------------
   CUSTOM CURSOR
   ---------------------------------------------------- */

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s, box-shadow 0.2s;
    left: -100px;
    top: -100px;
}

.custom-cursor-circle {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                height 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    left: -100px;
    top: -100px;
}

/* Cursor Interactive States */
.cursor-hover .custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--text-primary);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.cursor-hover .custom-cursor-circle {
    width: 54px;
    height: 54px;
    border-color: var(--accent);
    background-color: rgba(255, 0, 0, 0.08);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25), inset 0 0 10px rgba(255, 0, 0, 0.1);
}

.cursor-drag .custom-cursor-dot {
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.cursor-drag .custom-cursor-circle {
    width: 48px;
    height: 48px;
    border-color: var(--accent-gold);
    background-color: rgba(255, 170, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.15);
}

/* Touch Fallback to restore pointer */
body.no-custom-cursor * {
    cursor: auto !important;
}

body.no-custom-cursor .custom-cursor-dot,
body.no-custom-cursor .custom-cursor-circle {
    display: none !important;
}

/* ----------------------------------------------------
   STICKY HEADER
   ---------------------------------------------------- */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

html.light-theme .main-header.scrolled {
    background: rgba(245, 245, 247, 0.88);
}

html.light-theme .main-header {
    border-bottom-color: var(--border-color);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    transition: var(--transition-smooth);
}

.brand-logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.brand-logo-img.logo-white {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.brand-logo-img.logo-color {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.logo-wrap:hover .brand-logo-img {
    transform: scale(1.05);
}

.logo-wrap:hover .logo-white {
    opacity: 0;
}

.logo-wrap:hover .logo-color {
    opacity: 1;
}

/* Light theme: always show color logo, white logo hidden */
html.light-theme .brand-logo-img.logo-white {
    opacity: 0;
}
html.light-theme .brand-logo-img.logo-color {
    opacity: 1;
}
html.light-theme .logo-wrap:hover .logo-white {
    opacity: 0;
}
html.light-theme .logo-wrap:hover .logo-color {
    opacity: 1;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: scale(1.08);
    box-shadow: 0 0 16px var(--accent-glow);
}

.theme-toggle-btn .icon-sun,
.theme-toggle-btn .icon-moon {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-primary);
}

/* Dark mode: show moon, hide sun */
.theme-toggle-btn .icon-sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}
.theme-toggle-btn .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Light mode: show sun, hide moon */
html.light-theme .theme-toggle-btn .icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
html.light-theme .theme-toggle-btn .icon-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

html.light-theme .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

.cta-header-btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.cta-header-btn:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg-primary);
}

.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 14px;
    cursor: none;
}

.menu-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.menu-line:last-child {
    width: 70%;
    align-self: flex-end;
}

.menu-open .menu-line:first-child {
    transform: translateY(6px) rotate(45deg);
    background-color: var(--accent);
}

.menu-open .menu-line:last-child {
    width: 100%;
    transform: translateY(-6px) rotate(-45deg);
    background-color: var(--accent);
}

/* ----------------------------------------------------
   HEADER INLINE NAVIGATION (Desktop)
   ---------------------------------------------------- */

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-nav-link:hover,
.header-nav-link.active {
    color: var(--text-primary);
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
    width: 100%;
}

/* Hide header nav on small screens */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }
}

/* ----------------------------------------------------
   SIDE PANEL BACKDROP
   ---------------------------------------------------- */

.side-panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-panel-backdrop.active {
    opacity: 1;
    visibility: visible;
}

html.light-theme .side-panel-backdrop {
    background: rgba(0, 0, 0, 0.25);
}

/* ----------------------------------------------------
   SIDE PANEL (Slide from Right)
   ---------------------------------------------------- */

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(10, 10, 14, 0.97);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border-color);
    z-index: 1099;
    display: flex;
    flex-direction: column;
    padding: 24px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.side-panel.open {
    transform: translateX(0);
}

html.light-theme .side-panel {
    background: rgba(245, 245, 247, 0.97);
}

/* Side Panel Header */
.side-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.side-panel-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.side-panel-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.side-panel-close:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: rotate(90deg);
}

/* Side Panel Links */
.side-panel-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 0 0 auto;
}

.side-panel-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.42rem;
    font-weight: 700;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.5s ease,
                color 0.3s ease;
}

.side-panel.open .side-panel-link {
    transform: translateX(0);
    opacity: 1;
}

.side-panel.open li:nth-child(1) .side-panel-link { transition-delay: 0.1s; }
.side-panel.open li:nth-child(2) .side-panel-link { transition-delay: 0.16s; }
.side-panel.open li:nth-child(3) .side-panel-link { transition-delay: 0.22s; }
.side-panel.open li:nth-child(4) .side-panel-link { transition-delay: 0.28s; }
.side-panel.open li:nth-child(5) .side-panel-link { transition-delay: 0.34s; }

.side-panel-link:hover {
    color: var(--accent);
}

.side-panel-link.active {
    color: var(--accent);
}

.sp-link-num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    min-width: 22px;
}

.sp-link-text {
    display: inline-block;
}

/* Side Panel Footer */
.side-panel-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-panel-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.side-panel-info-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.side-panel-info-val {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.45;
}

.side-panel-info-val:hover {
    color: var(--accent);
}

.side-panel-socials {
    display: flex;
    gap: 12px;
}

.side-panel-addresses {
    gap: 8px;
}

.sp-social {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.sp-social:hover {
    transform: scale(1.15);
}

.social-img-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* ----------------------------------------------------
   GLOBAL REUSABLE UTILITIES
   ---------------------------------------------------- */

section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    max-width: 650px;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.section-header-centered .section-title {
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
}

.btn-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--accent);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-primary:hover i {
    transform: translate(2px, -2px);
    color: var(--accent);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

/* Text Gradients */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pulse Dot */
.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */

.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 35px;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: -0.04em;
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

/* Rotating Hero Badge */
.interactive-hero-badge {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
}

.badge-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text-svg {
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.rotating-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 8px;
    fill: var(--text-muted);
    letter-spacing: 2px;
}

.badge-center-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.interactive-hero-badge:hover .badge-center-icon {
    transform: scale(1.1);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -20px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mouse-icon {
    width: 22px;
    height: 38px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.2; }
    100% { top: 6px; opacity: 1; }
}

/* ----------------------------------------------------
   ABOUT & STATS SECTION
   ---------------------------------------------------- */

.about-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.about-left {
    display: flex;
    flex-direction: column;
}

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

.about-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px var(--accent-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ----------------------------------------------------
   SERVICES SECTION (INTERACTIVE ACCORDION LIST)
   ---------------------------------------------------- */

.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
}

.service-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    transition: var(--transition-fast);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 50px;
    transition: var(--transition-fast);
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    flex: 1;
    transition: var(--transition-fast);
}

.service-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    cursor: none;
}

.service-toggle-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

/* Expanded accordion content details */
.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-content-grid {
    padding-bottom: 40px;
    padding-left: 75px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-desc-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
}

.service-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-bullet-list li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Active Open Accordion States */
.service-item.active {
    background: rgba(255, 255, 255, 0.01);
}

.service-item.active .service-number {
    color: var(--accent);
}

.service-item.active .service-title {
    color: var(--accent);
    transform: translateX(10px);
}

.service-item.active .service-toggle-btn {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.service-item.active .service-toggle-btn i {
    transform: rotate(45deg);
}

.service-item.active .service-content {
    max-height: 350px;
}

/* Hover highlights */
.service-item:hover .service-header {
    padding-left: 10px;
}

/* ----------------------------------------------------
   SHOWCASE / PORTFOLIO SECTION
   ---------------------------------------------------- */

.showcase-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.filter-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
    gap: 8px;
    backdrop-filter: blur(10px);
}

html.light-theme .filter-group {
    background: rgba(255, 255, 255, 0.7);
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    color: var(--text-secondary);
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.filter-btn.active {
    background: var(--accent) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px var(--accent-glow);
}

/* Unique Asymmetrical exhibit grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.portfolio-item {
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    aspect-ratio: 4 / 3;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-item.stagger-down {
    transform: translateY(50px);
}

html.light-theme .portfolio-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    border-color: var(--accent);
    box-shadow: 0 40px 80px rgba(224, 0, 0, 0.15);
}

.portfolio-item.stagger-down:hover {
    transform: translateY(50px) scale(1.02);
}

.portfolio-item:not(.stagger-down):hover {
    transform: scale(1.02);
}

html.light-theme .portfolio-item:hover {
    box-shadow: 0 40px 80px rgba(224, 0, 0, 0.08);
}

.portfolio-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.portfolio-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 14, 0.98) 20%, rgba(10, 10, 14, 0.2) 100%);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

html.light-theme .portfolio-hover-overlay {
    background: linear-gradient(to top, rgba(245, 245, 247, 0.98) 20%, rgba(245, 245, 247, 0.2) 100%);
}

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

.portfolio-hover-content {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    position: relative;
}

.portfolio-item:hover .portfolio-hover-content {
    transform: translateY(0);
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-summary {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 85%;
    font-weight: 300;
}

.project-link-icon {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent) !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item:hover .project-link-icon {
    transform: scale(1);
    opacity: 1;
}

/* Adjust column shifting for responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-item:nth-child(even) {
        transform: none;
    }

    .portfolio-item:nth-child(even):hover {
        transform: scale(1.02);
    }
}

/* ----------------------------------------------------
   LIGHTBOX MODAL (Works Page)
   ---------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 12, 0.98);
    backdrop-filter: blur(25px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

html.light-theme .lightbox-modal {
    background: rgba(245, 245, 247, 0.98);
}

.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: scale(1.1) rotate(90deg);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Lightbox Content Layout */
.lightbox-content {
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 0 40px;
}

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
}

html.light-theme .lightbox-image-container {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.lightbox-img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 20px;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.6s ease;
}

.lightbox-modal.open .lightbox-img {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Lightbox Caption */
.lightbox-caption {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
                opacity 0.6s ease 0.15s;
}

.lightbox-modal.open .lightbox-caption {
    transform: translateY(0);
    opacity: 1;
}

.lightbox-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.lightbox-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .lightbox-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1.2fr 1fr;
        height: 90vh;
        gap: 20px;
        padding: 60px 0 0;
    }
    
    .lightbox-caption {
        max-width: 100%;
        text-align: center;
        align-items: center;
        gap: 12px;
    }
    
    .lightbox-title {
        font-size: 2.2rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: 40px;
        transform: none;
    }
    
    .lightbox-nav:hover {
        transform: scale(1.1);
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: var(--transition-smooth);
}

.project-link-icon i {
    width: 20px;
    height: 20px;
}

/* Hover Actions */
.portfolio-item:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

.portfolio-item:hover .portfolio-hover-content {
    transform: translateY(0);
}

.portfolio-item:hover .project-link-icon {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

/* Filter Fading Animations */
.portfolio-item.fade-out {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.portfolio-item.fade-in {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------- */

.testimonials-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(12px);
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.rating-stars i {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.rating-stars i.filled-star {
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

.testimonial-quote {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 40px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    cursor: none;
}

.slider-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: var(--accent-glow);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    transition: var(--transition-fast);
    padding: 0;
    cursor: none;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
}

/* ----------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------- */

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

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

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
}

.direct-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direct-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.direct-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.direct-icon i {
    width: 20px;
    height: 20px;
}

.direct-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.direct-val {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.direct-address {
    display: block;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.direct-val:hover {
    color: var(--accent);
}

/* Floating labels Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-textarea {
    resize: none;
}

/* Custom select styling overrides */
.custom-select {
    cursor: none;
    color: var(--text-primary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 16px;
    padding-right: 30px;
}

.custom-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Floating Label Logic */
.form-label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-focus-line {
    width: 100%;
}

/* Focus and active inputs styling */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

/* For Select options styling when option is picked */
.form-input:focus ~ .select-label,
.form-input:valid ~ .select-label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

/* Submit btn */
.btn-submit {
    align-self: flex-start;
    cursor: none;
}

/* Error feedback visual indicators */
.form-group.error .form-input {
    border-bottom-color: hsl(0, 100%, 60%);
}

.form-group.error .error-message {
    opacity: 1;
    transform: translateY(0);
}

.error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 0.75rem;
    color: hsl(0, 100%, 60%);
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-status {
    font-size: 0.95rem;
    text-align: center;
    border-radius: 10px;
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.form-status.success {
    padding: 15px;
    max-height: 60px;
    opacity: 1;
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgb(0, 200, 100);
    color: rgb(0, 230, 120);
}

.form-status.error {
    padding: 15px;
    max-height: 60px;
    opacity: 1;
    background: rgba(200, 0, 50, 0.1);
    border: 1px solid rgb(200, 0, 50);
    color: rgb(255, 60, 100);
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */

.main-footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 100px 0 40px 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Massive Let's Talk CTA */
.footer-cta-container {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.footer-cta-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.footer-cta-title {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 20px 0 40px 0;
}

.footer-cta-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.footer-cta-link i {
    width: 32px;
    height: 32px;
    transition: transform 0.4s ease;
}

.footer-cta-link:hover {
    color: var(--accent);
}

.footer-cta-link:hover i {
    transform: translate(5px, -5px);
}

/* Bottom Grid */
.footer-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

/* Bottom Copyright Bar */
.footer-copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-copyright-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-copyright-bar p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-maintainer {
    font-size: 0.78rem !important;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.maintainer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.maintainer-link:hover {
    color: var(--accent);
}

.back-to-top {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    cursor: none;
}

.back-to-top:hover {
    color: var(--accent);
}

.back-to-top i {
    width: 16px;
    height: 16px;
}

/* ----------------------------------------------------
   CASE STUDY & LEGAL PAGES CUSTOM COMPONENT STYLING
   ---------------------------------------------------- */

.case-hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
}

.case-hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.case-hero-breadcrumbs {
    margin-bottom: 30px;
}

.breadcrumb-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.breadcrumb-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.breadcrumb-link:hover {
    color: var(--accent);
}

.breadcrumb-link:hover i {
    transform: translateX(-4px);
}

.case-hero-title {
    font-size: 4.5rem;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.case-hero-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    font-weight: 300;
    line-height: 1.6;
}

.case-showcase-banner {
    max-width: var(--container-width);
    margin: 0 auto 80px auto;
    padding: 0 30px;
    height: 600px;
    overflow: hidden;
}

.case-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-showcase-banner:hover .case-banner-img {
    transform: scale(1.02);
}

.case-details-section {
    padding-top: 0;
    padding-bottom: 100px;
}

.case-details-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.case-metadata-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 100px;
    backdrop-filter: blur(12px);
}

.metadata-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metadata-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.metadata-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.case-body-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.case-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.case-paragraph {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 25px;
}

.case-paragraph:last-child {
    margin-bottom: 0;
}

.case-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 60px 0;
}

.case-strategy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-smooth);
}

.strategy-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.strategy-card-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 15px;
}

.strategy-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.strategy-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.case-gallery-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0;
}

.case-gallery-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

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

.gallery-item-full {
    grid-column: span 2;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
}

.gallery-item-half {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 3;
}

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

.gallery-grid img:hover {
    transform: scale(1.04);
}

.next-project-section {
    padding: 120px 0;
}

.next-project-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.next-project-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 80px 60px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    text-align: center;
}

.next-project-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
}

.next-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.next-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.next-title i {
    width: 40px;
    height: 40px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.next-project-card:hover .next-title i {
    transform: translateX(10px);
}

.next-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */

@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .footer-cta-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .interactive-hero-badge {
        display: none; /* Hide interactive badge on smaller layouts to prevent overlaps */
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .nav-overlay-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-overlay-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .service-header {
        padding: 30px 0;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-number {
        margin-right: 25px;
    }
    
    .portfolio-hover-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.4rem;
    }
    
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-quote {
        font-size: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-cta-title {
        font-size: 3rem;
    }
    
    .footer-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-copyright-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright-left {
        align-items: center;
        text-align: center;
    }
    
    .nav-menu-link {
        font-size: 2.5rem;
    }
}

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

/* ----------------------------------------------------
   LIGHT THEME — COMPONENT OVERRIDES
   ---------------------------------------------------- */

/* Smooth global variable transitions */
body, header, .stat-card, .service-item, .form-input, .nav-overlay, .portfolio-hover-overlay, .direct-item, .strategy-card, .next-project-card {
    transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

html.light-theme .nav-overlay {
    background: rgba(245, 245, 247, 0.98);
}

html.light-theme .grid-line {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.01) 50%,
        rgba(0, 0, 0, 0.05) 100%);
}

html.light-theme .glow-1 {
    opacity: 0.05;
}

html.light-theme .glow-2 {
    opacity: 0.1;
    background: var(--accent);
}

html.light-theme .custom-cursor-circle {
    border-color: rgba(200, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(200, 0, 0, 0.06);
}

html.light-theme .rotating-text {
    fill: var(--text-secondary);
}

html.light-theme .btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
}

html.light-theme .btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--accent);
}

/* Hide lightbox caption to only show the image in popup */
.lightbox-caption {
    display: none !important;
}

/* Make image full size within the popup */
.lightbox-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
}

.lightbox-image-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    height: 100% !important;
    padding: 20px !important; /* Slight padding to prevent touching the absolute edges */
}

.lightbox-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    border-radius: 0 !important;
    object-fit: contain !important;
}

/* Ensure lucide icons in side panel scale properly */
.sp-social svg { width: 14px; height: 14px; }

@media (max-width: 992px) {
  .hero-container { text-align: center; }
  .hero-cta-group { justify-content: center; }
  .interactive-hero-badge { right: auto; left: 50%; top: auto; bottom: -80px; transform: translateX(-50%); }
}
