/* Modern 2025 Design System */
:root {
    /* Color Palette - Green Theme */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #14b8a6;
    --accent: #22c55e;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --light: #f8fafc;
    --white: #ffffff;
    --text-primary: #fbfbfb;
    --text-secondary: #ffffff;
    --text-light: #ffffff;
    
    /* Gradients - Green Theme */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    --gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-hero: linear-gradient(135deg, #10b981 0%, #059669 50%, #14b8a6 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: move;
}

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

@media (max-width: 640px) {
    html.sell-phone-page {
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
    }
    
    body.sell-phone-page {
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 600;
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Logo Background Watermark */
.background-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url("../images/IMG_7712.PNG");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.4;
    animation: logoFloat 20s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(-50%, -45%) rotate(1deg) scale(1.02);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.35;
    }
    75% {
        transform: translate(-50%, -55%) rotate(-1deg) scale(0.98);
        opacity: 0.4;
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--gradient-secondary);
    bottom: -300px;
    right: -300px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -100px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(-100px, -50px) scale(1.05);
    }
}
/* whatsapp button floating */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	line-height: 1;
}

.float::before,
.float::after {
	display: none;
	content: '';
}

.float * {
	text-decoration: none;
	font-style: normal;
}

.my-float{
	margin-top: 0;
	line-height: 1;
	display: block;
}

/* Navigation */

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 1.5rem 0;
        transition: all var(--transition-base);
    }
    

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
    transition: all var(--transition-base);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
}

@media (max-width: 640px) {
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

.nav-special-button {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all var(--transition-base);
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
    margin-right: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-base);
    padding: 0.5rem 0.25rem;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero 3D Phone */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.phone-3d {
    perspective: 1000px;
    position: relative;
}

.phone-model {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 40px;
    padding: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    animation: float3D 6s ease-in-out infinite, phonePulse 6s ease-in-out infinite, phoneZoom 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: box-shadow 0.6s ease, border-color 0.6s ease;
    transform-origin: center center;
}

@keyframes phonePulse {
    0%, 46% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 20px rgba(239, 68, 68, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    48% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 30px rgba(239, 68, 68, 0.3);
        border-color: rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 60px rgba(16, 185, 129, 0.6),
            0 0 100px rgba(16, 185, 129, 0.4);
        border-color: rgba(16, 185, 129, 0.6);
    }
    52% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 80px rgba(16, 185, 129, 0.5),
            0 0 120px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.5);
    }
    54%, 96% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 40px rgba(16, 185, 129, 0.4),
            0 0 60px rgba(16, 185, 129, 0.2);
        border-color: rgba(16, 185, 129, 0.4);
    }
    98% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 25px rgba(16, 185, 129, 0.3);
        border-color: rgba(255, 255, 255, 0.25);
    }
    100% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 20px rgba(239, 68, 68, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

@keyframes phoneZoom {
    0%, 46% {
        transform: scale(1);
    }
    48% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1.08);
    }
    52% {
        transform: scale(1.12);
    }
    54% {
        transform: scale(1.05);
    }
    56%, 96% {
        transform: scale(1);
    }
    98% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

.phone-model::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 20px 20px;
    z-index: 2;
    transition: opacity 0.6s ease;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1));
    animation: screenGlow 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/IMG_0418.PNG') center/cover no-repeat;
    border-radius: 30px;
    opacity: 1;
    animation: screenTransition 6s ease-in-out infinite;
    transform: scale(1) translateZ(0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    will-change: transform, opacity;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/ecran iph.PNG') center/cover no-repeat;
    border-radius: 30px;
    opacity: 0;
    animation: screenTransitionRepaired 6s ease-in-out infinite;
    transform: scale(1.1) translateZ(-20px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    box-shadow: inset 0 0 50px rgba(16, 185, 129, 0.2);
    z-index: 1;
    will-change: transform, opacity, box-shadow;
}

@keyframes float3D {
    0%, 46% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    48% {
        transform: rotateY(-12deg) rotateX(4deg) translateY(-5px);
    }
    50%, 52% {
        transform: rotateY(-18deg) rotateX(6deg) translateY(-25px);
    }
    54%, 96% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    98% {
        transform: rotateY(-14deg) rotateX(4.5deg) translateY(-3px);
    }
    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
}

@keyframes screenGlow {
    0%, 46% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 40px rgba(239, 68, 68, 0.3),
            inset 0 0 20px rgba(239, 68, 68, 0.1);
    }
    48% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 50px rgba(239, 68, 68, 0.4),
            inset 0 0 25px rgba(239, 68, 68, 0.15);
    }
    50% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 100px rgba(16, 185, 129, 0.8),
            0 0 150px rgba(16, 185, 129, 0.5),
            inset 0 0 50px rgba(16, 185, 129, 0.4);
    }
    52% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 120px rgba(16, 185, 129, 0.7),
            0 0 180px rgba(16, 185, 129, 0.4),
            inset 0 0 60px rgba(16, 185, 129, 0.5);
    }
    54%, 96% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 60px rgba(16, 185, 129, 0.6),
            0 0 80px rgba(16, 185, 129, 0.3),
            inset 0 0 30px rgba(16, 185, 129, 0.2);
    }
    98% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 45px rgba(16, 185, 129, 0.4),
            inset 0 0 25px rgba(16, 185, 129, 0.15);
    }
    100% {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.2), 
            0 0 40px rgba(239, 68, 68, 0.3),
            inset 0 0 20px rgba(239, 68, 68, 0.1);
    }
}

@keyframes screenTransition {
    0%, 46% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg) translateZ(0);
        filter: brightness(0.9) contrast(1);
    }
    48% {
        opacity: 0.5;
        transform: scale(0.95) rotateZ(-2deg) translateZ(-5px);
        filter: brightness(0.7) contrast(0.8);
    }
    50%, 98% {
        opacity: 0;
        transform: scale(0.9) rotateZ(-3deg) translateZ(-10px);
        filter: brightness(0.6) contrast(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg) translateZ(0);
        filter: brightness(0.9) contrast(1);
    }
}

@keyframes screenTransitionRepaired {
    0%, 48% {
        opacity: 0;
        transform: scale(1.1) rotateZ(5deg) translateY(-20px) translateZ(-20px);
        filter: brightness(0.8) contrast(0.9);
        box-shadow: inset 0 0 20px rgba(16, 185, 129, 0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) rotateZ(2deg) translateY(-5px) translateZ(-5px);
        filter: brightness(1.3) contrast(1.2);
        box-shadow: inset 0 0 60px rgba(16, 185, 129, 0.4);
    }
    52% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg) translateY(0) translateZ(0);
        filter: brightness(1.4) contrast(1.3);
        box-shadow: inset 0 0 80px rgba(16, 185, 129, 0.6);
    }
    54%, 96% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg) translateY(0) translateZ(0);
        filter: brightness(1.2) contrast(1.1);
        box-shadow: inset 0 0 50px rgba(16, 185, 129, 0.3);
    }
    98% {
        opacity: 0.5;
        transform: scale(0.95) rotateZ(-2deg) translateZ(-5px);
        filter: brightness(1) contrast(1);
        box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1) rotateZ(5deg) translateY(-20px) translateZ(-20px);
        filter: brightness(0.8) contrast(0.9);
        box-shadow: inset 0 0 20px rgba(16, 185, 129, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

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

/* Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
    transition: transform var(--transition-base);
}

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

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-hover-effect {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
    transition: all var(--transition-slow);
    opacity: 0;
}

.service-card:hover .service-hover-effect {
    opacity: 1;
    bottom: -100%;
    right: -100%;
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.stat-item {
    text-align: center;
    padding: 2rem 0;
}

.stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.about-text {
    color: var(--white);
}

.about-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(10px);
}

.feature-item svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--white);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-3xl) 0;
}

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

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

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all var(--transition-base);
}

.gallery-placeholder span {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.gallery-placeholder p {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.gallery-item:hover .gallery-placeholder {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

/* Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.contact-item h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-base);
}


.footer-col a:hover {
    color: var(--primary-light);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        align-items: center;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu .nav-link {
        font-weight: 700;
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        transition: all var(--transition-base);
        animation: fadeInUp 0.4s ease-out backwards;
    }
    
    .nav-menu .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .nav-menu .nav-link:nth-child(2) {
        animation-delay: 0.15s;
    }
    
    .nav-menu .nav-link:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    .nav-menu .nav-link:nth-child(4) {
        animation-delay: 0.25s;
    }
    
    .nav-menu .nav-link:nth-child(5) {
        animation-delay: 0.3s;
    }
    
    .nav-menu .nav-link:nth-child(6) {
        animation-delay: 0.35s;
    }
    
    .nav-menu .nav-link:nth-child(7) {
        animation-delay: 0.4s;
    }
    
    .nav-menu .nav-link:nth-child(8) {
        animation-delay: 0.45s;
    }
    
    .nav-menu .nav-link:nth-child(9) {
        animation-delay: 0.5s;
    }
    
    .nav-menu .nav-link:nth-child(10) {
        animation-delay: 0.55s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(16, 185, 129, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    }
    
    .nav-menu .nav-link:active {
        transform: translateY(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .phone-model {
        width: 250px;
        height: 500px;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .phone-model {
        width: 200px;
        height: 400px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===============================
   NEW MULTI-PAGE STYLES
   =============================== */

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
}

.badge-icon {
    color: var(--primary-light);
    font-weight: bold;
}

/* Quick Services */
.quick-services {
    padding: 4rem 0;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-service-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.quick-service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.quick-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.quick-service-item h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.quick-service-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.quick-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

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

/* Why Us Section */
.why-us {
    padding: var(--spacing-3xl) 0;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: var(--spacing-3xl) 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.brand-card:hover {
    transform: scale(1.05);
    border-color: rgba(16, 185, 129, 0.5);
}

.brand-logo {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.brand-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.brand-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-3xl) 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--white);
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(16, 185, 129, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-urgent {
    background: var(--gradient-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.6); }
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.service-detail-header h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-text {
    color: var(--text-light);
}

.service-detail-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.check-list.urgent li::before {
    content: '⚠️';
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.model-tags span {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.service-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-detail-image {
    display: flex;
    align-items: center;
}

.service-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.service-placeholder p {
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.alert-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.alert-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #f59e0b;
}

.alert-box.error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
}

.alert-box.info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
}

.alert-box strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.alert-box p, .alert-box ul {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.alert-box ul {
    padding-left: 1.5rem;
}

.other-services {
    margin-top: 4rem;
}

.service-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

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

/* Price Filter */
.price-filter {
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* Prices Section */
.prices-section {
    padding: 4rem 0;
}

.price-category {
    margin-bottom: 4rem;
}

.price-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2.5rem;
}

.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.price-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    overflow-x: auto;
}

.price-table h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead th {
    background: rgba(16, 185, 129, 0.2);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-base);
}

.price-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.price-table tbody td {
    padding: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

.price-table tbody td.price {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.125rem;
}

.price-notes {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 4rem;
}

.price-notes h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.note-card ul {
    list-style: none;
    padding: 0;
}

.note-card ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.note-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

/* Forms Section */
.forms-section {
    padding: 4rem 0;
}

.forms-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-tab {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.form-tab:hover {
    background: rgba(255, 255, 255, 0.08);
}

.form-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.advanced-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

/* Stiluri specifice pentru selectoare */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    cursor: pointer;
}

/* Fix pentru opțiunile din selectoare - vizibilitate */
.form-group select option {
    background: var(--dark) !important;
    color: var(--white) !important;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: rgba(16, 185, 129, 0.3) !important;
    color: var(--primary-light) !important;
}

.form-group select:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Fix pentru focus state al selectului - păstrează arrow icon */
.form-group select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.form-group small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.large-input {
    font-size: 1.25rem !important;
    padding: 1.25rem 1.5rem !important;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-light);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.file-upload-area {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.file-upload-label:hover {
    border-color: var(--primary-light);
    background: rgba(16, 185, 129, 0.05);
}

.upload-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.file-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.remove-file {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-message {
    margin-top: 2rem;
}

.success-message, .error-message {
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-icon, .error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3, .error-message h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-message p, .error-message p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
}

.info-box h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-box ul, .info-box ol {
    color: var(--text-light);
    padding-left: 1.5rem;
}

.info-box li {
    margin: 0.5rem 0;
}

/* Status/IMEI Results */
.loading-status {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.status-result-box, .imei-result-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.status-result-box h3, .imei-result-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Fix pentru tabel status API */
.status-result-box table,
.status-result-box table th,
.status-result-box table td {
    color: var(--white) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.status-result-box table th {
    background: rgba(16, 185, 129, 0.2) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 1rem !important;
}

.status-result-box table td {
    padding: 0.75rem 1rem !important;
    color: var(--text-light) !important;
}

.status-result-box table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.status-result-box table tr:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.code-highlight {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.imei-details {
    display: grid;
    gap: 1rem;
}

.imei-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--white);
    font-weight: 600;
}

.badge-success {
    color: #10b981 !important;
}

.badge-error {
    color: #ef4444 !important;
}

.badge-warning {
    color: #f59e0b !important;
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

/* Quick FAQ */
.quick-faq {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.faq-item h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .price-tables {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   ABOUT PAGE STYLES
   =============================== */

.our-story {
    padding: var(--spacing-3xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.milestone-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.milestone-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.milestone-card h3 {
    color: var(--primary-light);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.milestone-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.values-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.value-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: var(--spacing-3xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.team-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.equipment-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.equipment-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.equipment-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.certifications {
    padding: var(--spacing-3xl) 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.cert-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===============================
   GALLERY PAGE STYLES
   =============================== */

.gallery-section {
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-filter {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

.gallery-filter:hover, .gallery-filter.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.gallery-item-full:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    transition: all var(--transition-base);
}

.gallery-placeholder span {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.gallery-placeholder h3 {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
}

.gallery-placeholder p {
    color: var(--text-light);
    font-size: 0.875rem;
    text-align: center;
}

.gallery-item-full:hover .gallery-placeholder {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

.before-after {
    padding: var(--spacing-3xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.ba-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ba-before, .ba-after {
    position: relative;
}

.ba-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.ba-placeholder {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.ba-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ba-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===============================
   CONTACT PAGE STYLES
   =============================== */

.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateX(5px);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.contact-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.open-now {
    color: #10b981 !important;
    font-weight: 600;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
    font-weight: 500;
}

.social-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.contact-form-col {
}

.map-section {
    padding: 4rem 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-overlay p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.how-to-find {
    padding: 4rem 0;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.direction-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.direction-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.direction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.direction-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.direction-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===============================
   FAQ PAGE STYLES
   =============================== */

.faq-section {
    padding: 4rem 0;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-cat-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.faq-cat-btn:hover, .faq-cat-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-light);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p, .faq-answer ul {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-light);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.still-questions {
    padding: var(--spacing-3xl) 0;
    background: rgba(16, 185, 129, 0.1);
}

/* ===============================
   BLOG PAGE STYLES
   =============================== */

.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.blog-card.featured .blog-placeholder {
    height: 100%;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-card h2, .blog-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card.featured h2 {
    font-size: 2rem;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.blog-read-more:hover {
    color: var(--white);
}

.tips-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE UPDATES
   =============================== */

@media (max-width: 968px) {
    .story-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

/* ===============================
   BLOG ARTICLE PAGE STYLES
   =============================== */

.blog-article-section {
    padding: 140px 0 4rem;
    min-height: 100vh;
}

.blog-article-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all var(--transition-base);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.blog-back-link:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateX(-5px);
}

.blog-article {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-article-meta span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.blog-article-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.blog-article-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-article-excerpt {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
}

.blog-article-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.125rem;
}

.blog-article-content h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.blog-article-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-light);
}

.blog-article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

.blog-article-content li {
    margin-bottom: 0.75rem;
}

.blog-article-content strong {
    color: var(--white);
    font-weight: 600;
}

.blog-article-content a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.blog-article-content a:hover {
    color: var(--primary);
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .blog-article {
        padding: 2rem 1.5rem;
    }
    
    .blog-article-title {
        font-size: 1.75rem;
    }
    
    .blog-article-excerpt {
        font-size: 1rem;
    }
    
    .blog-article-content {
        font-size: 1rem;
    }
    
    .blog-article-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-article-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-article-icon {
        font-size: 3rem;
    }
}
    
    .ba-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .story-visual,
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 8rem 0 3rem;
    }
}
/* ===============================
   PRICE CALCULATOR STYLES
   =============================== */

.price-calculator-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.calculator-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.calculator-form .form-group {
    margin-bottom: 1.5rem;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.calculator-form .form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
    z-index: 10;
    position: relative;
}

.calculator-form .form-control option {
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
}

.calculator-form .form-control option:hover {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-light);
}

.calculator-form .form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    transform: translateY(-1px);
}

.calculator-form .form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.calculator-form .form-control:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.calculator-result {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-placeholder {
    text-align: center;
    color: var(--text-light);
}

.result-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.result-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.result-card {
    width: 100%;
    animation: slideInUp 0.5s ease-out;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.result-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.result-details {
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.total-row {
    background: rgba(16, 185, 129, 0.1);
    margin: 1rem -1rem 0 -1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-bottom: none;
    font-weight: 600;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    color: var(--white);
    font-weight: 600;
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.result-actions .btn {
    flex: 1;
    min-width: 120px;
}

.result-note {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.result-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Result List Styling */
.result-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.result-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.result-list li:last-child {
    border-bottom: none;
}

.result-list li strong {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-display);
}

/* Result Total Styling */
.result-total {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-total strong {
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Calculator WhatsApp Button */
.calculator-whatsapp-btn {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.calculator-whatsapp-btn svg {
    flex-shrink: 0;
}

.result-error {
    text-align: center;
    color: var(--text-light);
}

.result-error .error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.result-error h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.result-error p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-header .section-title {
        font-size: 2rem;
    }
    
    .calculator-header .section-subtitle {
        font-size: 1rem;
    }
    
    .calculator-form,
    .calculator-result {
        padding: 1.5rem;
    }
    
    .result-price {
        font-size: 2.5rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions .btn {
        flex: none;
    }
}

@media (max-width: 768px) {
    .price-calculator-section {
        padding: 3rem 0;
    }
    
    .calculator-header .section-title {
        font-size: 1.8rem;
    }
    
    .result-price {
        font-size: 2rem;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* ===============================
   FIX VIZIBILITATE - TARGETAT
   =============================== */

/* Fix DOAR pentru tabelul rezultat API (nu afectează restul site-ului) */
#rezultat table,
#imei-result table {
    color: var(--white) !important;
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

#rezultat table th,
#imei-result table th {
    background: rgba(16, 185, 129, 0.2) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 1rem !important;
    text-align: left !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 1rem !important;
}

#rezultat table td,
#imei-result table td {
    color: var(--text-light) !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

#rezultat table tr:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Fix pentru footer contact list */
.footer-contact li strong {
    color: var(--white) !important;
    font-weight: 600 !important;
}

.footer-contact li a {
    color: var(--primary-light) !important;
    font-weight: 500 !important;
}

/* ===============================
   SELL PHONE PAGE STYLES
   =============================== */

.sell-phone-section {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: flex-start;
}

.sell-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.sell-form-wrapper.no-sidebar {
    display: block;
}

/* Progress Indicator */
.sell-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    opacity: 0.4;
    transition: opacity var(--transition-base);
    min-width: 60px;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.active .step-number {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.progress-step.completed .step-number {
    background: var(--gradient-primary);
    color: var(--white);
}

.progress-step.completed::after {
    background: var(--primary);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-base);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
}

/* Steps Container */
.sell-steps-container {
    position: relative;
    min-height: 500px;
}

@media (min-width: 641px) {
    .sell-steps-container {
        max-height: calc(100vh - 300px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .sell-steps-container::-webkit-scrollbar {
        width: 6px;
    }
    
    .sell-steps-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .sell-steps-container::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }
}

.sell-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

@media (min-width: 641px) {
    .sell-step.active {
        display: block;
    }
}

.step-title {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cards-grid.small-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.brand-select-card,
.model-select-card,
.condition-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.brand-select-card:hover,
.model-select-card:hover,
.condition-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.brand-select-card.active,
.model-select-card.active,
.condition-card.active {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.brand-select-card h3,
.model-select-card h3,
.condition-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin: 0;
}

.condition-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Condition Details */
.condition-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.condition-group {
    margin-bottom: 1.5rem;
}

.condition-group h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.condition-detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.condition-detail-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.condition-detail-card.active {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.2);
}

.condition-detail-card .card-icon {
    font-size: 2rem;
}

.condition-detail-card h4 {
    color: var(--white);
    font-size: 0.875rem;
    margin: 0;
}

/* Price Preview */
.price-preview {
    margin-bottom: 2rem;
}

.price-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.price-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Form */
.sell-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: min-content;
}

@media (max-width: 640px) {
    .sell-contact-form {
        gap: 1rem;
    }
}

.sell-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sell-contact-form .form-group {
    margin-bottom: 0;
}

.sell-contact-form .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-shrink: 0;
}



/* Back Button */
.btn-back {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    
    .sell-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-step {
        flex: 0 0 auto;
        min-width: 45px;
        max-width: none;
    }
    
    .progress-step::after {
        display: none;
    }
    
    .step-label {
        font-size: 0.55rem;
        white-space: nowrap;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .cards-grid.small-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}

@media (max-width: 640px) {
    body.sell-phone-page {
        overflow-x: hidden;
    }
    
    body.sell-phone-page .navbar {
        position: fixed;
        top: 0;
        z-index: 1001;
        padding: 0.75rem 0;
    }
    
    body.sell-phone-page .page-hero {
        display: none;
    }
    
    .sell-phone-section {
        padding-top: 70px;
        min-height: 100vh;
        overflow: visible;
    }
    
    .sell-phone-section .container {
        width: 100%;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
    
    .sell-form-wrapper {
        padding: 0.75rem;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .sell-progress {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.5rem 0.25rem;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sell-progress::-webkit-scrollbar {
        height: 3px;
    }
    
    .sell-progress::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .sell-progress::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 2px;
    }
    
    .sell-steps-container {
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sell-step {
        display: none;
        overflow: visible;
        padding-bottom: 2rem;
    }
    
    .sell-step.active {
        display: block;
    }
    
    .sell-step[data-step="10"] {
        padding-bottom: 3rem;
    }
    
    .sell-step[data-step="10"] .step-title {
        margin-bottom: 1rem;
    }
    
    .sell-step[data-step="10"] .price-preview {
        margin-bottom: 1.5rem;
    }
    
    .sell-step[data-step="10"] .contact-form-wrapper {
        overflow: visible;
    }
    
    .sell-step[data-step="10"] .sell-contact-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .sell-step[data-step="10"] .form-actions {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
    }
    
    .sell-step[data-step="10"] .form-actions .btn {
        flex: 1;
        min-width: 140px;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .brand-select-card,
    .model-select-card,
    .condition-card {
        padding: 0.875rem;
        min-height: 80px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .cards-grid.small-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .condition-detail-card {
        padding: 0.625rem;
        min-height: 60px;
    }
    
    .condition-group {
        margin-bottom: 1rem;
    }
    
    .condition-group h3 {
        font-size: 1rem;
    }
    
    .card-icon {
        font-size: 1.75rem;
    }
    
    .brand-select-card h3,
    .model-select-card h3,
    .condition-card h3 {
        font-size: 0.875rem;
    }
    
    .condition-card p {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .price-card h3 {
        font-size: 1rem;
    }
}

/* ===============================
   Legal Pages Styles
   =============================== */
.legal-page {
    padding: 120px 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-intro {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.legal-section h3 {
    color: var(--primary-light);
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.legal-section a:hover {
    color: var(--primary);
}

.legal-section table {
    margin: 1.5rem 0;
}

.legal-section table td,
.legal-section table th {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.legal-section table thead tr {
    background: rgba(16, 185, 129, 0.1);
}

.legal-section table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section table {
        font-size: 0.875rem;
    }
    
    .legal-section table td,
    .legal-section table th {
        padding: 0.5rem;
    }
}

/* ===============================
   Cookie Banner Styles
   =============================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.cookie-text a:hover {
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    white-space: nowrap;
}

.btn-accept {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }
    
    .btn-cookie {
        flex: 1;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.8125rem;
    }
}
/* Battery Slider Styles */

.battery-slider-container {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.slider-wrapper {
    position: relative;
    margin: 2rem 0;
}

.range-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.6);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.slider-labels span:not(:nth-child(2)) {
    opacity: 0.7;
}

.slider-labels span:nth-child(2) {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.slider-description {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}
