/* ==========================================================================
   MifDev CSS Design System - Modern Light Mode (User Friendly)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Premium Light Mode */
    --bg-main: #f8fafc; /* Slate 50 */
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.85);
    --bg-section-alt: #f1f5f9; /* Slate 100 */
    
    --color-primary: #4f46e5; /* Indigo 600 */
    --color-primary-rgb: 79, 70, 229;
    --color-secondary: #0ea5e9; /* Sky 500 */
    --color-secondary-rgb: 14, 165, 233;
    --color-accent: #2563eb; /* Blue 600 */
    --color-accent-rgb: 37, 99, 235;
    
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --text-light: #64748b; /* Slate 500 */
    
    --border-color: #e2e8f0; /* Slate 200 */
    --border-light: rgba(226, 232, 240, 0.8);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --gradient-text: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 60%, var(--color-secondary) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(37, 99, 235, 0.15));
    --gradient-card-hover: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.8) 100%);
    
    /* Layout & Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --glass-blur: blur(20px);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
    --shadow-primary-glow: 0 10px 20px rgba(79, 70, 229, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: #ffffff;
}

/* ==========================================================================
   Background Orbs (Glowing Elements)
   ========================================================================== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(79, 70, 229, 0.6);
    top: 2%;
    right: -10%;
    animation: float-slow 15s ease-in-out infinite alternate;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(14, 165, 233, 0.6);
    top: 35%;
    left: -15%;
    animation: float-slow 20s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: rgba(99, 102, 241, 0.6);
    bottom: 5%;
    right: -10%;
    animation: float-slow 25s ease-in-out infinite alternate;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -40px) scale(1.15); }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0 60px 0;
    position: relative;
}

.section.alt {
    background-color: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header .tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.section-header h2 span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Premium Card Style */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
}

.premium-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #ffffff;
    box-shadow: var(--shadow-primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: scale(1.02);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-nav);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

.header.scrolled .nav-container {
    height: 65px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-hero);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary-glow);
}

.logo-icon svg {
    color: #ffffff;
}

/* Nav Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    background: radial-gradient(100% 100% at 50% 0%, rgba(79, 70, 229, 0.05) 0%, rgba(248, 250, 252, 0) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-tag span.pulse {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #10b981; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-content h1 span.gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Hero Media Display */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-mockup-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-1 {
    top: 15%;
    left: -8%;
    animation: float-badge-1 5s ease-in-out infinite alternate;
}

.badge-2 {
    bottom: 20%;
    right: -8%;
    animation: float-badge-2 6s ease-in-out infinite alternate;
}

.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.badge-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.badge-info p {
    font-size: 11px;
    color: var(--text-light);
}

@keyframes float-badge-1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes float-badge-2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(12px); }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--bg-white);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: var(--shadow-primary-glow);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   Demo Templates Section (NEW FEATURE)
   ========================================================================== */
.template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.template-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.template-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.2);
}

.template-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9.5;
    background-color: var(--bg-section-alt);
    border-bottom: 1px solid var(--border-color);
}

.template-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.template-card:hover .template-preview img {
    transform: scale(1.04);
}

.template-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-white);
    color: var(--color-primary);
    border: 1px solid var(--border-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.template-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.template-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.template-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.template-tech-stack {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tech-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-section-alt);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.template-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.template-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    position: relative;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-card.popular::after {
    content: 'TERPOPULER';
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: var(--gradient-hero);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-primary-glow);
}

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 28px;
}

.pricing-price .currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    vertical-align: super;
}

.pricing-price .val {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li svg {
    color: #10b981; /* Success green check */
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.5;
}

.pricing-features li.disabled svg {
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-card .btn {
    width: 100%;
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator-box {
    padding: 48px;
    max-width: 950px;
    margin: 0 auto;
    background: var(--bg-white);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
}

.calc-options h3 {
    font-size: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    user-select: none;
}

.checkbox-label:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: var(--transition-fast) transform;
    background-color: #ffffff;
    clip-path: polygon(14% 44%, 0 58%, 38% 96%, 100% 16%, 86% 2%, 38% 68%);
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

.checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.checkbox-label.active {
    border-color: var(--color-primary);
    background: rgba(79, 70, 229, 0.04);
}

.calc-text {
    flex-grow: 1;
}

.calc-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    display: block;
}

.calc-desc {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.calc-price-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Calculator Result Panel */
.calc-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 48px;
    border-left: 1px solid var(--border-color);
}

.result-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.total-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 24px;
}

.total-price .currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    vertical-align: super;
}

.total-price .val {
    font-size: 44px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calc-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 250px;
    line-height: 1.5;
}

.calc-result .btn {
    width: 100%;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    background: #f8fafc;
    color: var(--text-main);
}

.filter-btn.active {
    background: var(--gradient-hero);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-primary-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-section-alt);
    border-bottom: 1px solid var(--border-color);
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    transform: translateY(20px);
    transition: var(--transition-normal) 0.1s;
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-tech-list {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.portfolio-tech {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 3px 8px;
    border-radius: 4px;
}

.portfolio-overlay-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #ffffff;
}

.portfolio-overlay-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-box {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    cursor: pointer;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question h3 {
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    padding-top: 16px;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-box {
    padding: 48px;
    max-width: 950px;
    margin: 0 auto;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-info-panel h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-info-panel p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(79, 70, 229, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-detail-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-control {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition-normal);
    width: 100%;
}

.form-control:focus {
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background-color: #ffffff;
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #0f172a; /* Dark footer for structural grounding */
    color: #ffffff;
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 10;
}

.footer h4, .footer .logo {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-glow);
}

.footer-nav h4 {
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 99;
    cursor: pointer;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.3;
    z-index: -1;
    animation: ping-pulse 2s infinite;
}

@keyframes ping-pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */

/* Tablet & Mobile Screens */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .services-grid, .pricing-grid, .portfolio-grid, .template-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .calc-result {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0 40px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    /* Responsive Hamburger Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 24px;
        transition: var(--transition-normal);
        border-left: 1px solid var(--border-color);
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .btn {
        width: 100%;
        margin-top: 16px;
    }
    
    /* Hamburger Active Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .services-grid, .pricing-grid, .portfolio-grid, .template-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .calculator-box, .contact-box {
        padding: 24px 16px;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on very small screens for clean viewport */
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   Language Switcher & RTL Styling overrides
   ========================================================================== */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn-select {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-white);
    transition: var(--transition-fast);
}

.lang-btn-select:hover {
    border-color: var(--color-primary);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 170px;
    z-index: 1000;
    margin-top: 8px;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    text-align: start;
    font-weight: 500;
}

.lang-dropdown a:hover {
    background: var(--bg-section-alt);
    color: var(--color-primary);
}

/* RTL overrides for Main Page */
[dir="rtl"] {
    text-align: right;
}
[dir="rtl"] .logo {
    flex-direction: row-reverse;
}
[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}
[dir="rtl"] .hero-grid {
    direction: rtl;
}
[dir="rtl"] .hero-content {
    text-align: right;
}
[dir="rtl"] .hero-btns {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
[dir="rtl"] .hero-stats {
    flex-direction: row-reverse;
}
[dir="rtl"] .stat-item {
    text-align: right;
}
[dir="rtl"] .floating-badge {
    direction: rtl;
}
[dir="rtl"] .service-card {
    text-align: right;
}
[dir="rtl"] .service-features {
    padding-right: 0;
}
[dir="rtl"] .service-features li {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
[dir="rtl"] .template-info {
    text-align: right;
}
[dir="rtl"] .template-actions {
    flex-direction: row-reverse;
}
[dir="rtl"] .pricing-card {
    text-align: right;
}
[dir="rtl"] .pricing-features {
    padding-right: 0;
}
[dir="rtl"] .pricing-features li {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
[dir="rtl"] .checkbox-label {
    flex-direction: row-reverse;
}
[dir="rtl"] .calc-text {
    text-align: right;
}
[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
}
[dir="rtl"] .faq-answer {
    text-align: right;
}
[dir="rtl"] .contact-grid {
    direction: rtl;
}
[dir="rtl"] .contact-info-panel {
    text-align: right;
}
[dir="rtl"] .contact-detail-item {
    flex-direction: row-reverse;
}
[dir="rtl"] .contact-detail-text {
    text-align: right;
}
[dir="rtl"] .form-group {
    text-align: right;
}
[dir="rtl"] .footer-grid {
    direction: rtl;
}
[dir="rtl"] .footer-brand {
    text-align: right;
}
[dir="rtl"] .footer-nav {
    text-align: right;
}
[dir="rtl"] .lang-dropdown {
    left: 0;
    right: auto;
}

/* Template categories filter tabs styling */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.filter-tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-tab-btn.active {
    background: var(--gradient-hero);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-primary-glow);
}


/* ==========================================================================
   Developer Trust Terminal 3D Card Styling
   ========================================================================== */
.dev-terminal-card {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 30px rgba(79, 70, 229, 0.15);
    overflow: hidden;
    color: #f8fafc;
    font-family: 'Space Grotesk', monospace, sans-serif;
    transform-style: preserve-3d;
    transition: border-color 0.3s ease;
}

.dev-terminal-card:hover {
    border-color: rgba(6, 182, 212, 0.6);
}

.terminal-header {
    background: rgba(30, 41, 59, 0.8);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.terminal-dots .dot.red { background: #ef4444; }
.terminal-dots .dot.yellow { background: #f59e0b; }
.terminal-dots .dot.green { background: #10b981; }

.terminal-title {
    font-size: 12px;
    color: #94a3b8;
    font-family: monospace;
}

.terminal-badge {
    font-size: 11px;
    font-weight: 700;
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
}

.terminal-body {
    padding: 24px;
    font-size: 13.5px;
    line-height: 1.7;
    overflow-x: auto;
}

.terminal-body pre {
    margin: 0;
    font-family: 'Consolas', 'Fira Code', monospace;
}

.code-keyword { color: #8b5cf6; font-weight: bold; }
.code-class { color: #38bdf8; font-weight: bold; }
.code-str { color: #10b981; }
.code-num { color: #f59e0b; }
.code-fn { color: #fbbf24; }
.code-comment { color: #64748b; font-style: italic; }

.terminal-footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #06b6d4;
    border-radius: 50%;
    box-shadow: 0 0 10px #06b6d4;
    animation: pulse 1.5s infinite;
}

/* Mobile 3D Canvas & Responsiveness Fixes */
.hero {
    overflow: hidden !important;
    position: relative;
}

#mifdev-hero-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100vw;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center;
    }

    .hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-tag {
        margin: 0 auto 16px auto !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 14px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-content p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-bottom: 24px !important;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 28px !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding-top: 20px !important;
    }

    .stat-item h3 {
        font-size: 22px !important;
    }

    .stat-item p {
        font-size: 10px !important;
    }

    .dev-terminal-card {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .terminal-body {
        padding: 12px !important;
        font-size: 11px !important;
        overflow-x: auto !important;
    }

    .hero-mockup-wrapper {
        max-width: 100% !important;
    }

    .services-grid, .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* 2 Columns Side-By-Side for Demo Templates on Mobile */
    .template-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .template-card {
        border-radius: 12px !important;
    }

    .template-info {
        padding: 12px !important;
    }

    .template-info h3 {
        font-size: 13.5px !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .template-info p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .template-tag {
        top: 8px !important;
        left: 8px !important;
        font-size: 9.5px !important;
        padding: 2px 8px !important;
    }

    .template-tech-stack {
        gap: 4px !important;
        margin-bottom: 12px !important;
    }

    .tech-tag {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }

    .template-actions {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .template-actions .btn {
        padding: 7px 8px !important;
        font-size: 11px !important;
        width: 100% !important;
    }
}


/* ==========================================================================
   Customer Feedback & Testimonials Section Styling
   ========================================================================== */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feedback-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.3);
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.client-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.feedback-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.feedback-rating .stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

.feedback-rating .rating-badge {
    font-size: 11px;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.feedback-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-main);
    margin-bottom: 18px;
    font-style: italic;
}

.feedback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 11.5px;
}

.verified-tag {
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feedback-date {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .feedback-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .feedback-card {
        padding: 16px !important;
    }
}


/* Slider Wrapper & Layout */
.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 10px 4px;
}

.feedback-grid.testimonial-track {
    display: flex !important;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    scroll-behavior: smooth;
}

.feedback-card {
    flex: 0 0 calc(33.333% - 16px);
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .feedback-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .feedback-card {
        flex: 0 0 100%;
    }
}

/* Slider Controls (Arrows) */
.slider-arrow {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    z-index: 10;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: scale(1.08);
    box-shadow: var(--shadow-primary-glow);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 10px;
    box-shadow: var(--shadow-primary-glow);
}
