/* ==========================================================================
   Dotizo Advertising LLC - Core Design System & Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Colors */
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #18181f;
    --bg-glass: rgba(18, 18, 22, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --brand-color: #ff3e55; /* Dotizo Red-Pink from Logo */
    --brand-color-rgb: 255, 62, 85;
    --brand-orange: #ff7a00; /* Service & Stat Orange Highlights */
    --brand-orange-rgb: 255, 122, 0;
    
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --text-muted: #636366;
    
    --whatsapp-green: #25d366;
    
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout & Spacing */
    --header-height: 80px;
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scrolling */
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Utility Layouts */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--brand-orange);
}

.w-full {
    width: 100%;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* --- Typographical Settings --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* --- Button Component --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(var(--brand-orange-rgb), 0.25);
}

.btn-primary:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--brand-orange-rgb), 0.4);
}

.btn-outline {
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn .arrow {
    transition: var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* --- Main Header / Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--text-primary);
    margin-top: 1px;
    padding-left: 2px;
}

/* Navigation Links */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: var(--transition-smooth);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 16px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li {
    margin-bottom: 12px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
}

.dropdown-menu a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 101;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Mobile Navigation Drawer --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 150;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.menu-close {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: auto;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.mobile-link:hover {
    color: var(--brand-orange);
    padding-left: 10px;
}

.mobile-sub-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition-smooth);
    display: block;
}

.mobile-sub-link:hover {
    color: var(--brand-orange);
    padding-left: 6px;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.social-icons a:hover {
    background: var(--brand-orange);
    color: var(--text-primary);
    transform: scale(1.1);
}

/* --- Floating Side Contacts --- */
.floating-contacts {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-left: 1px solid var(--border-glass);
}

.float-item {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 10px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    width: 48px;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.float-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.float-text {
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

/* Hover expansion */
.floating-contacts:hover .float-item {
    width: 140px;
}

.floating-contacts:hover .float-text {
    opacity: 1;
    transform: translateX(0);
}

/* Floater Specific Colors */
.float-item.whatsapp i {
    color: var(--whatsapp-green);
}
.float-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
}

.float-item.call i {
    color: var(--brand-orange);
}
.float-item.call:hover {
    background: rgba(255, 122, 0, 0.15);
}

.float-item.email i {
    color: var(--text-primary);
}
.float-item.email:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.85) 100%),
                linear-gradient(to bottom, rgba(10, 10, 12, 0.6) 0%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: var(--header-height);
}

.hero-text-block {
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    margin-bottom: 24px;
    border-left: 2px solid var(--brand-orange);
    padding-left: 12px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

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

.hero-btn {
    padding: 16px 36px;
    font-size: 0.95rem;
}

/* Bottom Controls */
.hero-bottom-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 4;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

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

.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* --- Section Layouts --- */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.explore-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease-out;
}

.explore-link:hover {
    color: var(--text-primary);
}

.explore-link:hover .arrow {
    transform: translateX(4px);
}

/* --- Services Section --- */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(255, 122, 0, 0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 122, 0, 0.08);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 122, 0, 0.15);
    z-index: 2;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    z-index: 2;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: auto;
    z-index: 2;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.service-learn-more {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    z-index: 2;
}

.service-card:hover {
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-8px);
    border-color: rgba(255, 122, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-icon {
    background: var(--brand-orange);
    color: var(--text-primary);
    transform: scale(1.05);
}

.service-card:hover .service-learn-more .arrow {
    transform: translateX(4px);
}

/* --- Recent Work / Portfolio --- */
.portfolio-section {
    background: var(--bg-secondary);
}

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

.filter-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.filter-tab.active, .filter-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.portfolio-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: 0;
    background-size: cover;
    background-position: center;
    scale: 1;
    transition: scale 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hotlinked Premium Images from Unsplash */
.food-img {
    background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=600&q=80');
}
.perfume-img {
    background-image: url('https://images.unsplash.com/photo-1541643600914-78b084683601?auto=format&fit=crop&w=600&q=80');
}
.video-shoot-img {
    background-image: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=600&q=80');
}
.menu-img {
    background-image: url('https://images.unsplash.com/photo-1586075010923-2dd4570fb338?auto=format&fit=crop&w=600&q=80');
}
.coffee-img {
    background-image: url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?auto=format&fit=crop&w=600&q=80');
}
.headshot-img {
    background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=600&q=80');
}
.fashion-img {
    background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=600&q=80');
}
.fitness-img {
    background-image: url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=600&q=80');
}
.hotel-video-img {
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=600&q=80');
}
.tech-video-img {
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=600&q=80');
}
.food-video-img {
    background-image: url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=600&q=80');
}
.box-print-img {
    background-image: url('https://images.unsplash.com/photo-1512909006721-3d6018887383?auto=format&fit=crop&w=600&q=80');
}
.menu-print-img {
    background-image: url('https://images.unsplash.com/photo-1590073844006-33379778ae09?auto=format&fit=crop&w=600&q=80');
}
.kitchen-store-img {
    background-image: url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?auto=format&fit=crop&w=600&q=80');
}
.cosmetics-store-img {
    background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=600&q=80');
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 12, 0.8) 100%);
    z-index: 1;
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 2;
    transition: var(--transition-smooth);
}

.portfolio-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.project-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Card Hover Animations */
.portfolio-card:hover {
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover .project-img {
    scale: 1.08;
}

.portfolio-card:hover .play-indicator {
    background: var(--brand-orange);
    color: var(--text-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-footer {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.portfolio-btn {
    padding: 16px 36px;
}

/* --- Trusted Clients Marquee --- */
.clients-section {
    background: var(--bg-primary);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-glass);
}

.clients-header {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 80px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-secondary);
    opacity: 0.4;
    transition: var(--transition-fast);
}

.client-logo-text:hover {
    opacity: 0.95;
    color: var(--text-primary);
}

.client-brand-logo {
    height: 35px;
    width: auto;
    max-width: 150px;
    opacity: 0.45;
    filter: grayscale(1) brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.client-brand-logo:hover {
    opacity: 0.95;
    filter: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

/* --- Stats / Counter Section --- */
.stats-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-glass);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.stat-icon-wrapper {
    font-size: 2.2rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* --- Contact / CTA Section --- */
.contact-section {
    background: var(--bg-primary);
}

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

.contact-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-glass);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 24px;
    flex-shrink: 0;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.card-action {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

/* Card 1: Call Now (Dark) */
.card-dark {
    background: var(--bg-secondary);
    color: var(--text-primary);
}
.card-dark .card-icon {
    background: rgba(255, 122, 0, 0.08);
    color: var(--brand-orange);
    border: 1px solid rgba(255, 122, 0, 0.15);
}
.card-dark:hover {
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 122, 0, 0.3);
}

/* Card 2: WhatsApp (White/Light Green) */
.card-light-whatsapp {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: transparent;
}
.card-light-whatsapp .card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
}
.card-light-whatsapp .card-label {
    color: var(--text-muted);
}
.card-light-whatsapp:hover {
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.08);
    background: #f8f8fa;
}

/* Card 3: Consultation (White/Light Orange) */
.card-light-consultation {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: transparent;
}
.card-light-consultation .card-icon {
    background: rgba(255, 122, 0, 0.1);
    color: var(--brand-orange);
}
.card-light-consultation .card-label {
    color: var(--text-muted);
}
.card-light-consultation:hover {
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.08);
    background: #f8f8fa;
}

.contact-card:hover .card-action {
    transform: translateX(6px);
}

/* --- Footer Section --- */
.main-footer {
    background: #060608;
    padding-top: 100px;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
}

.about-col .logo {
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    color: var(--text-primary);
    background: var(--brand-orange);
    border-color: transparent;
    transform: translateY(-3px);
}

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

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

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 6px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-contact-info i {
    color: var(--brand-orange);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

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

/* Grayscale Map Container */
.footer-map-container {
    width: 100%;
    height: 120px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    filter: grayscale(1) invert(0.9) contrast(1.1);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-map-container:hover {
    filter: none;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Media Queries (Responsive Styling) --- */

/* Massive Desktop */
@media (max-width: 1280px) {
    :root {
        --container-max-width: 960px;
    }
    .hero-title {
        font-size: 4rem;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Standard Tablet / Small Desktop */
@media (max-width: 991px) {
    :root {
        --container-max-width: 720px;
        --header-height: 70px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .desktop-nav, .quote-btn {
        display: flex;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .quote-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    :root {
        --container-max-width: 100%;
    }
    
    .desktop-nav, .quote-btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
    }
    
    .hero-bottom-controls {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2.6rem;
    }
    
    .floating-contacts {
        display: none; /* Hide sticky floats on narrow mobile screens to avoid overlay clutter */
    }

    /* Responsive Filter Tabs Scrolling on Mobile */
    .filter-tabs {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-sizing: border-box;
        justify-content: flex-start;
        border-radius: 30px;
    }
    
    .filter-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .filter-tab {
        flex: 0 0 auto;
        padding: 8px 16px;
        font-size: 0.7rem;
    }
}

/* --- Get a Quote Modal Dialog --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--brand-orange);
    color: var(--text-primary);
    transform: rotate(90deg);
    border-color: transparent;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.15);
    outline: none;
}

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

.modal-form .submit-btn {
    margin-top: 10px;
    padding: 14px 28px;
}

/* Success State styling */
.modal-success-state {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--whatsapp-green);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.success-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 340px;
}

#success-close-trigger {
    padding: 12px 30px;
}

/* Scrollbar styling for modal card on overflow */
.modal-card::-webkit-scrollbar {
    width: 6px;
}
.modal-card::-webkit-scrollbar-track {
    background: transparent;
}
.modal-card::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}
.modal-card::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.15);
}

/* --- Portfolio Details Lightbox Modal --- */
.portfolio-modal-card {
    max-width: 900px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    background: rgba(10, 10, 12, 0.9);
    user-select: none;
    -webkit-user-select: none;
}

.portfolio-modal-body {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

.portfolio-modal-img-col {
    flex: 1.2;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-modal-info-col {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border-glass);
}

.portfolio-modal-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-orange);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.portfolio-modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.portfolio-modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.portfolio-modal-actions {
    display: flex;
    gap: 16px;
}

/* Responsive adjustment for portfolio details modal */
@media (max-width: 768px) {
    .portfolio-modal-body {
        flex-direction: column;
    }
    
    .portfolio-modal-img-col {
        height: 280px;
        flex: none;
    }
    
    .portfolio-modal-info-col {
        padding: 30px 24px;
        border-left: none;
        border-top: 1px solid var(--border-glass);
        flex: none;
    }
    
    .portfolio-modal-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .portfolio-modal-desc {
        margin-bottom: 28px;
        font-size: 0.9rem;
    }
}

/* --- Portfolio Details Lightbox Modal Navigation Buttons --- */
.portfolio-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1010;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.portfolio-modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--brand-orange);
    transform: translateY(-50%) scale(1.08);
}

.portfolio-modal-nav-btn.prev {
    left: 40px;
}

.portfolio-modal-nav-btn.next {
    right: 40px;
}

/* Responsive adjust for navigation buttons */
@media (max-width: 1100px) {
    .portfolio-modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .portfolio-modal-nav-btn.prev {
        left: 20px;
    }
    .portfolio-modal-nav-btn.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    /* Hide side floating arrows on mobile since swipe handles it natively */
    .portfolio-modal-nav-btn {
        display: none !important;
    }
}

/* ==========================================================================
   ABOUT US SUBPAGE STYLES
   ========================================================================== */

/* About Hero Section */
.about-hero-section {
    padding: 220px 0 160px 0;
    background-image: linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.94)), url('../assets/images/about_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.about-hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Our Story Section */
.about-story-section {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.story-left {
    position: sticky;
    top: 120px;
}

.story-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 30px;
}

.story-accent-bar {
    width: 60px;
    height: 3px;
    background: var(--brand-orange);
}

.story-right p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-right p:last-child {
    margin-bottom: 0;
}

/* Core Values Section */
.about-values-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-radial);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--brand-orange);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--brand-orange);
    color: #fff;
    transform: rotate(6deg) scale(1.05);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vision & Mission Section */
.about-vision-mission-section {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.vision-mission-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-orange);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.vision-mission-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.vision-mission-card:hover::before {
    height: 100%;
    opacity: 1;
}

.card-header-icon {
    font-size: 2.2rem;
    color: var(--brand-orange);
    margin-bottom: 30px;
}

.vision-mission-card .card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.vision-mission-card .card-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team Philosophy Section */
.about-team-section {
    padding: 140px 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 107, 0, 0.05), transparent 60%);
}

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

.philosophy-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: left;
}

.philosophy-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 25px;
}

.philosophy-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-signature-block {
    margin-bottom: 35px;
    padding-left: 15px;
    border-left: 2px solid var(--brand-orange);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.founder-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.founder-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.philosophy-inner:hover .founder-img {
    transform: scale(1.03);
}

/* Our Team Section styles */
.about-team-grid-section {
    padding: 120px 0;
    background: radial-gradient(circle at center top, rgba(255, 107, 0, 0.01) 0%, rgba(10, 10, 12, 0) 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.team-section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.team-section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 60px auto;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.08);
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.member-info {
    padding: 24px;
    text-align: left;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.member-position {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Styles for About page */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3.2rem;
    }
    .story-grid {
        gap: 50px;
    }
    .story-title {
        font-size: 2.5rem;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 140px 0 80px 0;
    }
    .about-hero-title {
        font-size: 2.4rem;
    }
    .about-hero-lead {
        font-size: 1.1rem;
    }
    .about-story-section {
        padding: 80px 0;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-left {
        position: static;
    }
    .story-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .about-values-section {
        padding: 80px 0;
    }
    .values-header {
        margin-bottom: 50px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .value-card {
        padding: 30px 24px;
    }
    .about-vision-mission-section {
        padding: 80px 0;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vision-mission-card {
        padding: 40px 30px;
    }
    .about-team-section {
        padding: 80px 0;
    }
    .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        text-align: center;
    }
    .philosophy-text-content {
        align-items: center;
    }
    .philosophy-title {
        font-size: 1.8rem;
    }
    .philosophy-desc {
        font-size: 1rem;
    }
    .founder-signature-block {
        border-left: none;
        border-top: 2px solid var(--brand-orange);
        padding-left: 0;
        padding-top: 15px;
        align-items: center;
    }
    .about-team-grid-section {
        padding: 80px 0;
    }
    .team-section-title {
        font-size: 2.2rem;
    }
    .team-section-desc {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Portfolio Hero Section */
.portfolio-hero-section {
    padding: 220px 0 160px 0;
    background-image: linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.94)), url('../assets/images/portfolio_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.portfolio-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.portfolio-hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .portfolio-hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-section {
        padding: 140px 0 80px 0;
    }
    .portfolio-hero-title {
        font-size: 2.4rem;
    }
    .portfolio-hero-lead {
        font-size: 1.1rem;
    }
}

/* Blog Page Styles */
.blog-hero-section {
    padding: 220px 0 160px 0;
    background-image: linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.94)), url('../assets/images/blog_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.blog-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.blog-hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.blog-grid-section {
    padding: 120px 0;
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 0, 0.05);
}

.blog-card-image-wrapper {
    margin: -40px -40px 25px -40px;
    border-top-left-radius: calc(var(--border-radius-lg) - 1px);
    border-top-right-radius: calc(var(--border-radius-lg) - 1px);
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-category {
    color: var(--brand-orange);
    letter-spacing: 0.05em;
}

.blog-divider {
    color: rgba(255, 255, 255, 0.1);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--brand-orange);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    color: var(--brand-orange);
}

.blog-card-link:hover i {
    transform: translateX(5px);
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
    .blog-hero-title {
        font-size: 3.2rem;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 140px 0 80px 0;
    }
    .blog-hero-title {
        font-size: 2.4rem;
    }
    .blog-hero-lead {
        font-size: 1.1rem;
    }
    .blog-grid-section {
        padding: 80px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .blog-card {
        padding: 30px;
    }
    .blog-card-image-wrapper {
        margin: -30px -30px 25px -30px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 220px 0 160px 0;
    background-image: linear-gradient(rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.95)), url('../assets/images/contact_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.contact-hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.contact-page-section {
    padding: 120px 0;
    background: radial-gradient(circle at center top, rgba(255, 107, 0, 0.02) 0%, rgba(10, 10, 12, 0) 50%);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-col-title {
    font-size: 2.2rem;
    font-family: var(--font-primary);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.contact-col-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.contact-info-item-card.link-hover-effect:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-item-card.whatsapp-color.link-hover-effect:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.info-item-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brand-orange);
    transition: all 0.3s ease;
}

.contact-info-item-card:hover .info-item-icon {
    background: var(--brand-orange);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.contact-info-item-card.whatsapp-color:hover .info-item-icon {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.info-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-item-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hover-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-info-item-card:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--brand-orange);
}

.contact-info-item-card.whatsapp-color:hover .hover-arrow {
    color: #25D366;
}

.contact-page-map-wrapper {
    width: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    height: 280px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-page-map-wrapper iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-page-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-page-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.contact-page-form select option {
    background: #0d0d0f;
    color: var(--text-primary);
}

/* Contact success view styles */
.contact-page-success-view {
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-page-success-view .success-icon {
    font-size: 4rem;
    color: #25D366;
    animation: scaleCheckmark 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-page-success-view .success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.contact-page-success-view .success-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 3.2rem;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 140px 0 80px 0;
    }
    .contact-hero-title {
        font-size: 2.4rem;
    }
    .contact-hero-lead {
        font-size: 1.1rem;
    }
    .contact-page-section {
        padding: 80px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form-card {
        padding: 30px;
    }
}

/* Products Catalog Page & Lightbox Modal styles */
.products-hero-section {
    padding: 220px 0 160px 0;
    background-image: linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.94)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.products-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 20px;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.products-hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.products-section {
    padding: 120px 0;
    background: #0a0a0c;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.08);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.product-info {
    padding: 24px;
    text-align: left;
}

.product-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
}

.product-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.product-modal-card {
    background: rgba(25, 25, 30, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 960px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.product-modal-overlay.active .product-modal-card {
    transform: scale(1);
}

.product-modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.product-modal-close-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff;
    transform: rotate(90deg);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.product-modal-left {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.product-modal-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-right {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.product-tag-small {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-modal-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.product-modal-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
}

.buy-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.buy-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 15px;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buy-amazon {
    background: #FF9900;
    color: #111111;
}

.buy-amazon:hover {
    background: #e08700;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.buy-noon {
    background: #FFE600;
    color: #111111;
}

.buy-noon:hover {
    background: #e6ce00;
    box-shadow: 0 5px 15px rgba(255, 230, 0, 0.3);
}

.noon-icon-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 900;
    background: #111111;
    color: #FFE600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-transform: lowercase;
}

.buy-trendyol {
    background: #F27A1A;
    color: #ffffff;
}

.buy-trendyol:hover {
    background: #da6607;
    box-shadow: 0 5px 15px rgba(242, 122, 26, 0.3);
}

.trendyol-icon-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: lowercase;
    border: 1.5px solid #ffffff;
    border-radius: 3px;
    padding: 0 3px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .products-hero-title {
        font-size: 3rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .product-modal-card {
        max-width: 720px;
    }
    .product-modal-content {
        grid-template-columns: 1fr;
    }
    .product-modal-left {
        min-height: 320px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    .product-modal-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .products-hero-section {
        padding: 140px 0 80px 0;
    }
    .products-hero-title {
        font-size: 2.4rem;
    }
    .products-hero-lead {
        font-size: 1.1rem;
    }
    .products-section {
        padding: 80px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-modal-overlay {
        padding: 10px;
    }
    .product-modal-card {
        border-radius: var(--border-radius-md);
        max-height: calc(100% - 20px);
    }
    .product-modal-close-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background: rgba(15, 15, 18, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .product-modal-left {
        min-height: 200px;
        height: 220px;
    }
    .product-modal-right {
        padding: 20px 15px;
    }
    .product-modal-heading {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .product-modal-body {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    .buy-section {
        padding-top: 12px;
    }
    .buy-label {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    .buy-buttons {
        flex-direction: row;
        gap: 8px;
    }
    .buy-btn {
        flex: 1;
        padding: 10px 6px;
        font-size: 0.8rem;
        gap: 5px;
    }
}

/* --- Product Details Lightbox Modal Navigation Buttons --- */
.product-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1010;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--brand-orange);
    transform: translateY(-50%) scale(1.08);
}

.product-modal-nav-btn.prev {
    left: 40px;
}

.product-modal-nav-btn.next {
    right: 40px;
}

/* Responsive adjust for navigation buttons */
@media (max-width: 1100px) {
    .product-modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .product-modal-nav-btn.prev {
        left: 20px;
    }
    .product-modal-nav-btn.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    /* Hide side floating arrows on mobile since swipe handles it natively */
    .product-modal-nav-btn {
        display: none !important;
    }
}

/* --- Product Card Order Button --- */
.product-btn-order {
    width: 100%;
    margin-top: 20px;
    padding: 10px 20px;
}

.product-card:hover .product-btn-order {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.product-card .product-btn-order:hover {
    background: #ff8c1a;
    border-color: #ff8c1a;
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* --- Customised Products Page Layout & Styling --- */
.customised-hero-section {
    background-image: linear-gradient(rgba(10, 10, 12, 0.75), rgba(10, 10, 12, 0.95)), url('../assets/images/customised_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.order-modal-card {
    max-width: 600px;
}

.order-modal-content {
    padding: 40px;
}

.order-modal-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.order-modal-subheading {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.form-control:disabled, .form-control[readonly] {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.01) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 576px) {
    .order-modal-content {
        padding: 30px 20px;
    }
    .order-modal-heading {
        font-size: 1.5rem;
    }
}

/* --- Products Multi-Image Gallery Lightbox Popup Modal --- */
/* Lightbox Gallery Modal Card */
.gallery-modal-card {
    max-width: 900px !important; /* Wider on desktop to display side-by-side columns */
    width: 95%;
    padding: 35px;
    display: flex !important;
    flex-direction: row !important;
    gap: 35px;
    align-items: center;
}

.gallery-modal-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevents flex items from expanding beyond bounds */
}

.gallery-modal-right {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center product info vertically */
    min-width: 0;
}

.gallery-modal-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.gallery-modal-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    margin-top: 0;
}

#gallery-modal-order-btn {
    align-self: flex-start;
    cursor: pointer;
    margin-top: 10px;
}

.gallery-modal-viewport {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-lg);
    aspect-ratio: 1/1; /* Square for full product mockups visibility */
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 15, 18, 0.4);
}

.gallery-modal-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.gallery-modal-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image fills the container box */
    background: transparent;
    padding: 0; /* No margins/gaps around the image */
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.gallery-modal-nav-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.gallery-modal-nav-btn.prev {
    left: 15px;
}

.gallery-modal-nav-btn.next {
    right: 15px;
}

.gallery-modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(10, 10, 12, 0.3);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.05);
}

.gallery-modal-dots {
    display: none !important;
}

.gallery-modal-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.gallery-modal-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.gallery-modal-dots .dot.active {
    background: var(--brand-orange);
    width: 18px;
    border-radius: 4px;
}

.gallery-modal-thumbnails {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
    padding: 0 5px;
}

.gallery-modal-thumbnails .thumbnail {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: rgba(15, 15, 18, 0.6);
    opacity: 0.55;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.3, 1);
    box-sizing: border-box;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-modal-thumbnails .thumbnail:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.gallery-modal-thumbnails .thumbnail.active {
    border-color: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
    opacity: 1;
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .gallery-modal-card {
        flex-direction: column !important;
        gap: 20px;
        padding: 20px;
        max-width: 500px !important;
        width: 90%;
    }
    
    .gallery-modal-left, .gallery-modal-right {
        flex: 1;
        width: 100%;
    }
    
    .gallery-modal-right {
        justify-content: flex-start;
        text-align: left;
    }
    
    .gallery-modal-heading {
        font-size: 1.4rem;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    
    .gallery-modal-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .gallery-modal-viewport {
        aspect-ratio: 1/1;
    }
    
    .gallery-modal-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .gallery-modal-nav-btn.prev {
        left: 10px;
    }
    
    .gallery-modal-nav-btn.next {
        right: 10px;
    }
}

/* --- Photography Subpage Styling --- */
.photo-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.photo-category-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.photo-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.08);
}

.photo-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.photo-card-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.photo-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.photo-card-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    margin-top: 0;
    flex: 1;
}

.photo-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.photo-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-primary);
}

.photo-card-list li i {
    color: var(--brand-orange);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .photo-categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .photo-category-card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
        flex-direction: column !important;
    }
    
    .photo-category-card[style*="grid-column: span 2"] .photo-card-img-wrapper {
        aspect-ratio: 16/10 !important;
    }
}

@media (max-width: 576px) {
    .photo-card-content {
        padding: 25px;
    }
}

/* Google Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.003);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.reviews-slider-container {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 25px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.reviews-slider-container:active {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.review-card {
    width: 420px;
    flex-shrink: 0;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    height: 240px;
}

/* Staggered float animations for a dynamic floating feel */
.review-card:nth-child(5n+1) {
    animation: reviews-float-1 7s ease-in-out infinite;
}
.review-card:nth-child(5n+2) {
    animation: reviews-float-2 8s ease-in-out infinite;
}
.review-card:nth-child(5n+3) {
    animation: reviews-float-3 6s ease-in-out infinite;
}
.review-card:nth-child(5n+4) {
    animation: reviews-float-4 9s ease-in-out infinite;
}
.review-card:nth-child(5n+5) {
    animation: reviews-float-5 7.5s ease-in-out infinite;
}

/* Pause float animations on hover or when actively dragging */
.reviews-slider-container:hover .review-card,
.reviews-slider-container.is-dragging .review-card {
    animation-play-state: paused;
}

.review-card:hover {
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.06);
    transform: scale(1.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-author-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
    transition: border-color 0.3s ease;
}

.review-card:hover .review-avatar {
    border-color: var(--brand-orange);
}

.review-author-info-inline {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.review-author-meta {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.review-meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.review-stars {
    color: #ffb800;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.google-icon-brand {
    color: #4285F4;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for standard compliant browsers */
}
.review-text::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Webkit browsers */
}

/* Floating animation keyframes */
@keyframes reviews-float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes reviews-float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes reviews-float-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes reviews-float-4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}
@keyframes reviews-float-5 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .review-card {
        width: 340px;
        height: 220px;
        padding: 20px;
    }
    .review-avatar {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 290px;
        height: 210px;
        padding: 18px;
    }
    .review-avatar {
        width: 38px;
        height: 38px;
    }
    .review-text {
        font-size: 0.9rem;
    }
}

/* Product Details Modal Image Thumbnails Overlay */
.product-modal-thumbnails {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}
.product-modal-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    cursor: pointer;
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
    opacity: 0.8;
}
.product-modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-modal-thumbnail:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.6);
}
.product-modal-thumbnail.active {
    opacity: 1;
    border-color: var(--brand-orange);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.4);
}

/* Responsive adjustment for vertical stacking overlay */
@media (max-width: 768px) {
    .product-modal-thumbnails {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .product-modal-thumbnail {
        width: 48px;
        height: 48px;
    }
}
/* --- Dynamic QR Code Page Styling --- */
.qrcode-hero-section {
    background-image: linear-gradient(rgba(10, 10, 12, 0.75), rgba(10, 10, 12, 0.95)), url('../assets/images/qrcode_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.qr-btn-platform {
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 16px 32px;
}

.qrcode-dashboard-section {
    padding: 100px 0;
    position: relative;
    background: rgba(10, 10, 12, 0.5);
}

.dashboard-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.dashboard-card {
    background: rgba(20, 20, 25, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.dashboard-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.03);
}

.qr-generator-panel {
    flex: 1.1;
    display: flex;
    flex-direction: column;
}

.qr-analytics-panel {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.dashboard-panel-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-code-display-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    flex: 1;
    position: relative;
}

.qr-img-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: #0f0f12;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.qr-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 18, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 2.5rem;
    z-index: 2;
}

.qr-code-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 15px;
    letter-spacing: 0.1em;
}

.input-action-group {
    display: flex;
    gap: 12px;
}

.input-action-group .form-control {
    flex: 1;
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.input-action-group .form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
    outline: none;
}

.alert-success-badge {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.4s ease forwards;
}

.qr-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.qr-stat-widget {
    background: rgba(10, 10, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-number-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.stat-trend {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.text-green {
    color: #25D366 !important;
    background: rgba(37, 211, 102, 0.08) !important;
}

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

.qr-chart-container {
    background: rgba(10, 10, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-legend {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 140px;
    padding-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 28px;
    background: linear-gradient(180deg, var(--brand-orange) 0%, rgba(255, 107, 0, 0.15) 100%);
    border-radius: 4px 4px 0 0;
    height: var(--height-percent);
    position: relative;
    transition: height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.chart-bar:hover {
    background: linear-gradient(180deg, #ff8c1a 0%, rgba(255, 140, 26, 0.3) 100%);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.3);
}

.bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange);
    opacity: 0;
    transition: opacity 0.25s, top 0.25s;
    pointer-events: none;
    white-space: nowrap;
}

.chart-bar:hover .bar-value {
    opacity: 1;
    top: -28px;
}

.bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* FAQ Accordion Styling */
.qrcode-faq-section {
    padding: 100px 0;
    background: rgba(10, 10, 12, 0.2);
}

.faq-container {
    max-width: 800px !important;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.2);
    background: rgba(20, 20, 25, 0.6);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 30px;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-trigger:focus {
    outline: none;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer {
    padding: 0 30px 25px 30px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* WhatsApp Support Section Styling */
.qrcode-support-section {
    padding: 60px 0;
}

.support-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(15, 15, 18, 0.6) 100%);
    border: 1px solid rgba(37, 211, 102, 0.18);
    border-radius: var(--border-radius-md);
    padding: 45px 50px;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.02);
    position: relative;
    overflow: hidden;
}

.support-card-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0) 70%);
    pointer-events: none;
}

.support-card-left {
    flex: 1.3;
}

.support-card-right {
    flex: 0.7;
    display: flex;
    justify-content: flex-end;
}

.support-badge {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.support-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.support-card-tagline {
    font-size: 1rem;
    color: #25D366;
    font-weight: 600;
    margin: 0 0 15px 0;
    letter-spacing: 0.02em;
}

.support-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 580px;
}

.qr-btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 700;
    padding: 16px 36px;
    font-size: 1.05rem;
    border: none;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qr-btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .dashboard-wrapper {
        flex-direction: column;
    }
    .support-card-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 30px;
    }
    .support-card-right {
        justify-content: flex-start;
        width: 100%;
    }
    .qr-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .dashboard-card {
        padding: 25px;
    }
    .qr-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .chart-bar {
        width: 20px;
    }
    .faq-trigger {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 20px 18px 20px;
        font-size: 0.9rem;
    }
    .support-card-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Theme Switcher & Light Theme Overrides
   ========================================================================== */

/* 1. Theme Switcher Widget */
.theme-switcher {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3px;
    height: 36px;
    width: 76px; /* reduced from 140px to fit icons only */
    margin-right: 15px; /* space before Get a Quote button */
    align-items: center;
}

.theme-btn {
    flex: 1;
    background: none;
    border: none;
    color: #8e8e93;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    font-size: 13px; /* adjusted icon size */
}

.switcher-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: #ffffff;
    border-radius: 17px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
    z-index: 1;
    transform: translateX(0);
}

/* 2. Light Theme CSS Variables */
:root.light-theme {
    --bg-primary: #f5f5f7;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eeeeee;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --border-glass: rgba(0, 0, 0, 0.08);
    
    --text-primary: #121212;
    --text-secondary: #555555;
    --text-muted: #888888;
}

/* 3. Theme Switcher Adjustments in Light Theme */
.light-theme .theme-switcher {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .theme-btn {
    color: #636366;
}

.light-theme .switcher-slider {
    background: #0a0a0c;
    transform: translateX(100%);
}

/* Set active colors correctly using parent state selector */
html:not(.light-theme) .theme-btn[data-theme="black"] {
    color: #0a0a0c;
}

html.light-theme .theme-btn[data-theme="white"] {
    color: #ffffff;
}

/* 4. Element Specific Overrides for Light Theme */
.light-theme .main-header {
    background: rgba(245, 245, 247, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .mobile-menu {
    background: rgba(245, 245, 247, 0.95);
}

.light-theme .card-light-consultation {
    background: #ffffff !important;
    color: #0a0a0c !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.light-theme .card-light-consultation:hover {
    background: #f8f8fa !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.light-theme .card-light-consultation .card-label {
    color: #636366;
}

.light-theme .hero-overlay {
    background: radial-gradient(circle at center, rgba(245, 245, 247, 0.1) 0%, rgba(245, 245, 247, 0.75) 100%),
                linear-gradient(to bottom, rgba(245, 245, 247, 0.4) 0%, rgba(245, 245, 247, 0.9) 100%);
}

.light-theme .social-icons a {
    background: rgba(0, 0, 0, 0.05);
}

.light-theme .social-icons a:hover {
    color: #ffffff;
}

.light-theme .footer-map-container {
    filter: grayscale(1) opacity(0.85);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .main-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .floating-contacts {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Light Theme Modals */
.light-theme .portfolio-modal-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-theme .form-group input,
.light-theme .form-group select,
.light-theme .form-group textarea {
    background: rgba(0, 0, 0, 0.03);
    color: #121212;
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .form-group input:focus,
.light-theme .form-group select:focus,
.light-theme .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--brand-orange);
}

/* Mobile responsive switcher adjustments */
@media (max-width: 991px) {
    .theme-switcher {
        height: 32px;
        width: 68px;
        margin-right: 10px;
    }
    .theme-btn {
        font-size: 11px;
    }
}

/* Light Theme Subpage Hero Overrides */
.light-theme .about-hero-section {
    background-image: linear-gradient(rgba(245, 245, 247, 0.4), rgba(245, 245, 247, 0.95)), url('../assets/images/about_hero.png') !important;
}

.light-theme .portfolio-hero-section {
    background-image: linear-gradient(rgba(245, 245, 247, 0.4), rgba(245, 245, 247, 0.95)), url('../assets/images/portfolio_hero.png') !important;
}

.light-theme .blog-hero-section {
    background-image: linear-gradient(rgba(245, 245, 247, 0.4), rgba(245, 245, 247, 0.95)), url('../assets/images/blog_hero.png') !important;
}

.light-theme .contact-hero-section {
    background-image: linear-gradient(rgba(245, 245, 247, 0.4), rgba(245, 245, 247, 0.95)), url('../assets/images/contact_hero.png') !important;
}

/* Inline background service pages light theme overrides */
.light-theme #ecommerce-hero {
    background-image: linear-gradient(rgba(245, 245, 247, 0.45), rgba(245, 245, 247, 0.96)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1920&q=80') !important;
}

.light-theme #marketing-hero {
    background-image: linear-gradient(rgba(245, 245, 247, 0.45), rgba(245, 245, 247, 0.96)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80') !important;
}

.light-theme #photography-hero {
    background-image: linear-gradient(rgba(245, 245, 247, 0.4), rgba(245, 245, 247, 0.95)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1920&q=80&sat=-100') !important;
}

.light-theme #printing-hero {
    background-image: linear-gradient(rgba(245, 245, 247, 0.45), rgba(245, 245, 247, 0.96)), url('https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?auto=format&fit=crop&w=1920&q=80') !important;
}

.light-theme #videography-hero {
    background-image: linear-gradient(rgba(245, 245, 247, 0.42), rgba(245, 245, 247, 0.96)), url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1920&q=80') !important;
}

.light-theme .about-hero-section,
.light-theme .portfolio-hero-section,
.light-theme .blog-hero-section,
.light-theme .contact-hero-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Light Theme Products Pages (products.html, customised.html, dynamicqrcode.html) Overrides */
.light-theme .products-section {
    background: #f5f5f7 !important;
}

.light-theme .product-card {
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 107, 0, 0.3) !important;
}

.light-theme .product-image-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.light-theme .product-modal-overlay {
    background: rgba(245, 245, 247, 0.95) !important;
}

.light-theme .product-modal-card {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .product-modal-close-btn {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #121212 !important;
}

.light-theme .product-modal-close-btn:hover {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #ffffff !important;
}

.light-theme .product-modal-left {
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.light-theme .product-modal-thumbnail {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

.light-theme .product-modal-thumbnail:hover {
    border-color: rgba(0, 0, 0, 0.6) !important;
}

.light-theme .product-modal-thumbnail.active {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.3) !important;
}

/* Customised Page Gallery Modal Viewport overrides */
.light-theme .gallery-modal-viewport {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .gallery-modal-thumbnails .thumbnail {
    background: rgba(0, 0, 0, 0.05) !important;
}

/* QR Code Dashboard Page Overrides */
.light-theme .qrcode-dashboard-section {
    background: #eeeeee !important;
}

.light-theme .qrcode-faq-section {
    background: #f5f5f7 !important;
}

.light-theme .dashboard-card {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04) !important;
}

.light-theme .dashboard-card:hover {
    border-color: rgba(255, 107, 0, 0.2) !important;
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.05) !important;
}

.light-theme .input-action-group .form-control {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #121212 !important;
}

.light-theme .qr-stat-widget {
    background: #f5f5f7 !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.light-theme .qr-chart-container {
    background: #f5f5f7 !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.light-theme .chart-visual {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.light-theme .faq-item {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .faq-item:hover {
    border-color: rgba(255, 107, 0, 0.2) !important;
    background: #ffffff !important;
}

.light-theme .support-card-wrapper {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    border-color: rgba(37, 211, 102, 0.25) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.05) !important;
}

/* Keep products/customised/qrcode hero sections dark and text readable in light theme */
.light-theme .products-hero-section {
    color: #ffffff !important;
}
.light-theme .products-hero-section .products-hero-title {
    color: #ffffff !important;
}
.light-theme .products-hero-section .products-hero-lead {
    color: rgba(255, 255, 255, 0.75) !important;
}
.light-theme .products-hero-section .section-tag {
    color: var(--brand-orange) !important;
}

/* QR Code Display Box Light Theme Overrides */
.light-theme .qr-code-display-box {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.light-theme .qr-img-wrapper {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .qr-spinner {
    background: rgba(255, 255, 255, 0.85) !important;
}

.light-theme .qr-code-id {
    color: var(--text-secondary) !important;
}

/* Light Theme Client Brand Logos Overrides */
.light-theme .client-brand-logo {
    filter: grayscale(1) brightness(0) !important;
    opacity: 0.35 !important;
}

.light-theme .client-brand-logo:hover {
    filter: none !important;
    opacity: 0.95 !important;
}

/* WhatsApp Card Hover Overrides for Light Theme */
.light-theme .card-light-whatsapp:hover {
    background: #f8f8fa !important;
    color: #121212 !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.light-theme .card-light-whatsapp:hover .card-label {
    color: rgba(18, 18, 18, 0.6) !important;
}

.light-theme .card-light-whatsapp:hover .card-value {
    color: #121212 !important;
}

.light-theme .card-light-whatsapp:hover .arrow {
    color: #121212 !important;
}
