/* ============================================
   BURVIC - Purple & White Theme
   Premium, Elegant, Modern Design
   ============================================ */

:root {
    /* Purple Theme Colors */
    --purple-primary: #7C3AED;
    --purple-dark: #5B21B6;
    --purple-light: #8B5CF6;
    --purple-lighter: #A78BFA;
    --purple-lightest: #C4B5FD;
    
    /* White & Neutrals */
    --white: #FFFFFF;
    --white-off: #F9FAFB;
    --gray-50: #F3F4F6;
    --gray-100: #E5E7EB;
    --gray-200: #D1D5DB;
    --gray-300: #9CA3AF;
    --gray-400: #6B7280;
    --gray-500: #4B5563;
    --gray-600: #374151;
    --gray-700: #1F2937;
    --gray-800: #111827;
    --gray-900: #0F172A;
    
    /* Accent Colors */
    --accent-pink: #EC4899;
    --accent-blue: #3B82F6;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--white-off);
    --bg-tertiary: var(--gray-50);
    --bg-dark: var(--gray-900);
    --bg-card: var(--white);
    
    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --text-light: var(--gray-300);
    --text-white: var(--white);
    
    /* Border Colors */
    --border: var(--gray-200);
    --border-light: var(--gray-100);
    --border-dark: var(--gray-300);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 10px 30px rgba(124, 58, 237, 0.2);
    --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.25);
    --glow-purple: 0 0 30px rgba(124, 58, 237, 0.4);
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    max-width: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    transition: all var(--transition);
    position: relative;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

.nav-icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    display: block;
    margin-top: 6px;
    position: relative;
    top: 4px;
    align-self: flex-start;
}

.nav-link {
    align-items: center;
    justify-content: flex-start;
}

.nav-link svg {
    margin: 0;
    padding: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-login {
    background: var(--purple-primary);
    color: var(--white);
    border-radius: 10px;
    padding: var(--space-xs) var(--space-md);
    font-weight: 600;
}

.btn-login::after {
    display: none;
}

.btn-login:hover {
    background: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-register {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
    border-radius: 10px;
    padding: var(--space-xs) var(--space-md);
    font-weight: 600;
}

.btn-register:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-user {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: var(--space-xs) var(--space-md);
    background: var(--purple-lightest);
    border-radius: 10px;
    transition: all var(--transition);
}

.btn-user .user-name {
    font-weight: 600;
    color: var(--purple-primary);
    font-size: 0.875rem;
    line-height: 1.2;
}

.btn-user .user-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: capitalize;
    line-height: 1.2;
}

.btn-user:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-user:hover .user-name {
    color: var(--white);
}

.btn-user:hover .user-role {
    color: var(--white);
}

.btn-logout {
    background: transparent;
    color: var(--error);
    border: 2px solid var(--error);
    border-radius: 10px;
    padding: var(--space-xs) var(--space-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.btn-logout:hover {
    background: var(--error);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
    overflow: hidden;
    padding-top: 120px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--purple-primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--purple-light);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--purple-lightest);
    color: var(--purple-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -2px;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
}

.btn-secondary {
    background: var(--white);
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.btn-secondary:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.btn-outline:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--purple-primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-primary), var(--accent-pink));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-md);
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--purple-primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    font-size: 0.9375rem;
    position: relative;
    padding-left: var(--space-md);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: 700;
}

/* ============================================
   Portfolio Preview
   ============================================ */

.portfolio-preview {
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-lg);
}

.portfolio-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.portfolio-content {
    padding: var(--space-md);
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    font-weight: 700;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.portfolio-link {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    margin-top: var(--space-xs);
    transition: all var(--transition);
}

.portfolio-link:hover {
    color: var(--purple-dark);
    text-decoration: underline;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
    border-color: var(--purple-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: var(--space-xs);
    width: 16px;
    height: 16px;
    margin-top: 6px;
    position: relative;
    top: 4px;
    align-self: flex-start;
}

.check-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--success);
    color: var(--success);
    display: block;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews {
    background: var(--bg-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-md);
}

.review-rating {
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple-lightest);
}

.review-info h4 {
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.review-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   About Preview
   ============================================ */

.about-preview {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text .section-label {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.about-stat {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-stat .stat-number {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
}

.about-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    background: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--purple-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-lightest);
    border-radius: 12px;
    margin: 0 auto;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
}

.info-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.info-card a {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--gray-900);
    color: var(--white);
    border-top: 1px solid var(--border-dark);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-sm);
}

/* About Page Styles - Redesigned */
.about-hero {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    padding: calc(var(--space-xl) + 100px) 0 var(--space-xl);
    color: var(--white);
    text-align: center;
}

.about-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.about-content-section {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.about-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.about-intro-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-stats-section-new {
    background: var(--bg-secondary);
    padding: var(--space-xl) 0;
    margin: var(--space-xl) 0;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card-new {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: all var(--transition);
}

.stat-card-new:hover {
    border-color: var(--purple-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number-new {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-label-new {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.about-mission {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.mission-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-values {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.value-card-new {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition);
}

.value-card-new:hover {
    border-color: var(--purple-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.value-card-new p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-why {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.why-item {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    border-left: 4px solid var(--purple-primary);
}

.why-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: var(--space-xs);
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.about-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.cta-content .btn {
    background: var(--white);
    color: var(--purple-primary);
}

.cta-content .btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid-new {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--gray-300);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--purple-primary);
    color: var(--white);
    border-color: var(--purple-primary);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--purple-light);
}

.footer-newsletter h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    font-weight: 700;
    color: var(--white);
}

.footer-newsletter p {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.newsletter-form input {
    padding: var(--space-sm);
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--purple-primary);
}

.newsletter-form .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ============================================
   Chatbot - FIXED
   ============================================ */

.chatbot {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--accent-pink));
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-purple);
}

.chatbot-toggle svg {
    width: 24px;
    height: 24px;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 600px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--purple-primary);
    color: var(--white);
}

.chatbot-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all var(--transition);
    line-height: 1;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: var(--space-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    background: var(--bg-secondary);
}

.chatbot-message {
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
}

.chatbot-message.bot {
    background: var(--white);
    align-self: flex-start;
    border: 1px solid var(--border);
}

.chatbot-message.user {
    background: var(--purple-primary);
    color: var(--white);
    align-self: flex-end;
}

.chatbot-message p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.chatbot-input-wrapper {
    padding: var(--space-md);
    border-top: 1px solid var(--border);
    display: flex;
    gap: var(--space-xs);
    background: var(--bg-card);
}

.chatbot-input-wrapper input {
    flex: 1;
    padding: var(--space-sm);
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
}

.chatbot-input-wrapper input:focus {
    outline: none;
    border-color: var(--purple-primary);
    background: var(--white);
}

.chatbot-input-wrapper button {
    padding: var(--space-sm) var(--space-md);
    background: var(--purple-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.chatbot-input-wrapper button:hover {
    background: var(--purple-dark);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        transform: translateX(-100%);
        transition: transform var(--transition);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .chatbot-window {
        width: calc(100vw - 2rem);
        right: var(--space-md);
        left: var(--space-md);
    }
}
