:root {
    /* Modern Color Palette */
    --primary: #e91e63;
    --primary-light: #f48fb1;
    --primary-dark: #c2185b;
    --secondary: #4caf50;
    --secondary-light: #81c784;
    --secondary-dark: #388e3c;
    
    /* Neutral Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-muted: #edf2f7;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Blur Effects */
    --blur-light: blur(10px);
    --blur-medium: blur(20px);
    --blur-strong: blur(40px);
    
    /* Typography Scale */
    --text-xs: clamp(0.7rem, 1.5vw, 0.8rem);
    --text-sm: clamp(0.8rem, 1.8vw, 0.9rem);
    --text-base: clamp(0.9rem, 2vw, 1rem);
    --text-lg: clamp(1rem, 2.5vw, 1.2rem);
    --text-xl: clamp(1.2rem, 3vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 4vw, 2rem);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Animation */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f7fafc;
        --text-secondary: #e2e8f0;
        --text-muted: #a0aec0;
        --bg-primary: #1a202c;
        --bg-secondary: #2d3748;
        --bg-muted: #4a5568;
        --gradient-bg: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed header */
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Will-change for better performance */
.service-card,
.testimonial-card,
.btn,
.floating-shape,
.whatsapp-float,
.support-toggle {
    will-change: transform;
}

/* GPU acceleration */
.hero,
.service-card,
.testimonial-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *:not(.navigation):not(.navigation *),
    *:not(.navigation):not(.navigation *)::before,
    *:not(.navigation):not(.navigation *)::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-elements,
    .floating-shape {
        display: none;
    }

    /* Keep navigation visible */
    .navigation,
    .navigation ul,
    .navigation li,
    .navigation a {
        opacity: 1 !important;
        visibility: visible !important;
        animation: none !important;
    }
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-bg);
    font-size: var(--text-base);
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

.container {
    max-width: min(1200px, 90vw);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--blur-medium);
    -webkit-backdrop-filter: var(--blur-medium);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all var(--transition-base);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.navigation {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    transition: padding var(--transition-base);
    width: 100%;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform var(--transition-base);
}

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

.logo-image {
    width: clamp(60px, 6vw, 80px);
    height: clamp(60px, 6vw, 80px);
    object-fit: contain;
    transition: all var(--transition-base);
    border-radius: var(--radius-sm);
}

.logo-text h1 {
    color: var(--primary);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-text span {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.navigation ul {
    display: flex !important;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
    margin: 0;
    padding: 0;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.navigation a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block;
}

.navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left var(--transition-slow);
}

.navigation a:hover::before {
    left: 100%;
}

.navigation a:hover {
    color: var(--primary) !important;
    transform: translateY(-1px);
    background: rgba(233, 30, 99, 0.05);
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-info {
    color: var(--secondary);
    font-weight: 600;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(76, 175, 80, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all var(--transition-base);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.contact-info:hover {
    background: rgba(76, 175, 80, 0.15);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.8;
    pointer-events: none;
    animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 15%;
    filter: blur(1px);
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 50%;
    top: 60%;
    left: 10%;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.shape-3 {
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 10px;
    top: 40%;
    left: 5%;
    transform: rotate(45deg);
}

.shape-4 {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    top: 25%;
    left: 20%;
    transform: rotate(15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h3 {
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-md);
    opacity: 0.95;
    letter-spacing: 0.025em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: var(--text-base);
    max-width: min(600px, 90vw);
    margin: 0 auto var(--space-xl);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat h4 {
    font-size: var(--text-xl);
    font-weight: 800;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.stat span {
    font-size: var(--text-sm);
    opacity: 0.9;
    letter-spacing: 0.025em;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-slow);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.025em;
    text-transform: none;
    min-width: 140px;
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: all var(--transition-base);
    z-index: -1;
    border-radius: inherit;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::after {
    left: 100%;
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: rgba(252, 228, 236, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--bg-primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--gradient-card);
    backdrop-filter: var(--blur-medium);
    -webkit-backdrop-filter: var(--blur-medium);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(233, 30, 99, 0.1), rgba(76, 175, 80, 0.1), transparent);
    opacity: 0;
    transition: all var(--transition-slow);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(233, 30, 99, 0.3);
}

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

.service-card i {
    font-size: var(--text-2xl);
    color: var(--secondary);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    border-radius: var(--radius-full);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.3));
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.service-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.service-card p {
    color: #2d3748;
    line-height: 1.6;
    font-size: var(--text-sm);
    letter-spacing: 0.025em;
    position: relative;
    z-index: 2;
    opacity: 0.85;
    font-weight: 500;
}

/* Service Item Formatting */
.service-item {
    margin-bottom: var(--space-md);
}

.service-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    opacity: 0.9;
}

.service-item h4 i {
    margin-right: 0.5rem;
    color: var(--secondary);
    font-size: 0.9em;
}

.service-item p {
    color: #2d3748;
    line-height: 1.6;
    font-size: var(--text-sm);
    opacity: 0.82;
    font-weight: 450;
}

/* Category Content */
.category-content {
    padding: var(--space-md) 0;
}

.category-card {
    padding: var(--space-xl);
}

.category-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    opacity: 0.95;
}

.category-card h3 i {
    margin-right: 0.75rem;
    color: var(--primary);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #f8fafc;
}

.process h2 {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.step h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.step p {
    color: #4a5568;
    line-height: 1.4;
    font-size: 0.7rem;
    letter-spacing: 0.1px;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #fff;
}

.pricing h2 {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #e91e63;
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: "En Popüler";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Price styles removed */

/* Amount styles removed */

/* Unit styles removed */

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Upload Section */
.upload {
    padding: 6rem 0;
    background: #f8fafc;
}

.upload h2 {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.upload-form {
    max-width: 800px;
    margin: 0 auto;
}

.upload-area {
    border: 3px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    background: #fff;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 2rem;
}

.upload-area:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.upload-area.dragover {
    border-color: #2563eb;
    background: #eff6ff;
}

.upload-area i {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.upload-area h3 {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.upload-area p {
    color: #64748b;
}

#fileInput {
    display: none;
}

.file-list {
    margin-bottom: 2rem;
}

.file-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-info i {
    color: #2563eb;
    font-size: 0.9rem;
}

.file-details h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.file-details span {
    color: #64748b;
    font-size: 0.9rem;
}

.remove-file {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.remove-file:hover {
    background: #dc2626;
}

.quote-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Price display styles removed */

/* Price display styles removed */

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

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

.about-text h2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-size: 0.85rem;
    color: #e91e63;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.about-text p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

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

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential i {
    color: #4caf50;
    font-size: 0.9rem;
    width: 18px;
}

.credential span {
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 8px solid #2563eb;
}

.image-placeholder i {
    font-size: 4rem;
    color: #94a3b8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hero Background */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.services-preview p {
    text-align: center;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Profile Image */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #e91e63;
    margin: 0 auto;
    display: block;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #e91e63 0%, #4caf50 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Navigation Active State */
.navigation a.active {
    color: var(--primary) !important;
    font-weight: 600;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(233, 30, 99, 0.1);
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
    background: #f8fafc;
}

.service-card.detailed {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 175, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 0.85rem;
    color: white;
}

.service-content {
    padding: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.3rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Service price styles removed */

/* Service price styles removed */

/* Languages Section */
.languages {
    padding: 4rem 0;
    background: #fff;
}

.languages h2 {
    text-align: center;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.languages p {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
}

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

.language-group h3 {
    color: #4caf50;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.language-group ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.language-group li {
    padding: 0.4rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.8rem;
    text-align: center;
}

/* Pricing Plans */
.pricing-plans {
    padding: 4rem 0;
    background: #f8fafc;
}

.pricing-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding: 1.5rem 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #e91e63;
    color: white;
}

/* Additional Services Table */
.additional-services {
    padding: 4rem 0;
    background: #fff;
}

.services-table {
    overflow-x: auto;
}

.services-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.services-table th,
.services-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8rem;
}

.services-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

/* Language Pricing */
.language-pricing {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.language-price-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.language-price-card.premium {
    border: 2px solid #f59e0b;
}

.language-price-card.rare {
    border: 2px solid #ef4444;
}

.price-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.8rem;
    font-size: 0.8rem;
}

.language-price-card.premium .price-badge {
    background: #e91e63;
}

.language-price-card.rare .price-badge {
    background: #ef4444;
}

/* Discounts */
.discounts {
    padding: 4rem 0;
    background: #fff;
}

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

.discount-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.discount-card i {
    font-size: 0.95rem;
    color: #4caf50;
    margin-bottom: 0.8rem;
}

.discount-card h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.faq-item p {
    color: #64748b;
    font-size: 0.8rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #e91e63 0%, #4caf50 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.cta p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

/* Testimonials Section */
.testimonials {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.testimonials>.container>p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: var(--text-base);
    letter-spacing: 0.025em;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--gradient-card);
    backdrop-filter: var(--blur-medium);
    -webkit-backdrop-filter: var(--blur-medium);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.05), transparent);
    transition: left var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(2deg);
    box-shadow: var(--shadow-xl);
    border-color: rgba(233, 30, 99, 0.2);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.025em;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: left;
}


.author-info h4 {
    color: var(--text-primary);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.author-info span {
    color: var(--secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.025em;
    position: relative;
    z-index: 1;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

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

.stat-item h3 {
    color: #e91e63;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-item span {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #a0aec0;
    padding: clamp(3rem, 6vw, 4rem) 0 var(--space-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    border-radius: var(--radius-full);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: inherit;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
    color: #fff;
    border-color: rgba(233, 30, 99, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-base);
}

.social-links a:hover i {
    transform: scale(1.1) rotate(5deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: var(--text-sm);
    transition: opacity var(--transition-base);
}

.footer-bottom:hover p {
    opacity: 1;
}

/* Responsive Design */
/* Upload Specific Styles */
.upload-process {
    padding: 2rem 0;
    background: #f8fafc;
}

.upload-step {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.upload-step.hidden {
    display: none;
}

.upload-step h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 0.85rem;
}

.upload-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.upload-icon i {
    font-size: 0.85rem;
    color: #4caf50;
}

.upload-link {
    color: #e91e63;
    cursor: pointer;
    text-decoration: underline;
}

.file-info {
    margin-top: 1rem;
    text-align: center;
}

.file-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0.25rem 0;
}

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

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.quote-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.quote-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.quote-details {
    margin-top: 1rem;
}

.quote-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.quote-item.total {
    font-weight: 600;
    color: #e91e63;
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    border-top: 2px solid #e91e63;
}

.delivery-info {
    background: #e8f5e8;
    padding: 0.7rem;
    border-radius: 6px;
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.8rem;
    color: #4caf50;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.terms-link {
    color: #e91e63;
    text-decoration: none;
}

.upload-features {
    padding: 4rem 0;
    background: #fff;
}

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

.feature-item {
    text-align: center;
    padding: 1.2rem;
}

.feature-item i {
    font-size: 0.95rem;
    color: #4caf50;
    margin-bottom: 0.8rem;
}

.feature-item h3 {
    color: #1e293b;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

/* Contact Specific Styles */
.contact-main {
    padding: 4rem 0;
    background: #fff;
}

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

.contact-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
}

.contact-icon {
    background: #4caf50;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #1e293b;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}

.contact-details a {
    color: #e91e63;
    text-decoration: none;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #4caf50 !important;
    font-size: 0.75rem;
    margin-top: 0.4rem;
}

.map-section {
    padding: 3rem 0;
    background: #f7fafc;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.google-map {
    position: relative;
    background: #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.google-map:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-marker i {
    font-size: 0.85rem;
    color: #e91e63;
    margin-bottom: 0.4rem;
}

.marker-info h3 {
    color: #1e293b;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.marker-info p {
    color: #64748b;
    font-size: 0.75rem;
}

.location-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.transport-list {
    list-style: none;
    margin: 1rem 0;
}

.transport-list li {
    padding: 0.4rem 0;
    color: #64748b;
    font-size: 0.8rem;
}

.transport-list i {
    color: #4caf50;
    margin-right: 0.4rem;
    width: 18px;
}

.parking-info {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.parking-info h4 {
    color: #1e293b;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}

.about-halit {
    padding: 4rem 0;
    background: #fff;
}

.qualifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.qualification i {
    color: #4caf50;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.qualification h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
    font-size: 0.85rem;
}

.qualification p {
    color: #64748b;
    font-size: 0.75rem;
    margin: 0;
}

.contact-direct {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-direct h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #e91e63;
    text-decoration: none;
    font-size: 0.8rem;
}

.credentials-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #e91e63;
    color: white;
    padding: 0.4rem;
    border-radius: 6px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.contact-faq {
    padding: 4rem 0;
    background: #f8fafc;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--text-lg);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header {
        min-height: 70px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        gap: var(--space-sm);
        flex: 1;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .logo-text span {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }

    .nav {
        flex-wrap: wrap;
        gap: var(--space-sm);
        padding: var(--space-sm) 0;
    }

    .navigation {
        order: 3;
        width: 100%;
        margin-top: var(--space-sm);
    }

    .navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xs);
        background: var(--gradient-card);
        backdrop-filter: var(--blur-medium);
        -webkit-backdrop-filter: var(--blur-medium);
        padding: var(--space-sm);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .navigation a {
        display: block;
        text-align: center;
        padding: var(--space-xs) var(--space-sm);
        border-radius: var(--radius-sm);
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .contact-info {
        order: 2;
        font-size: clamp(0.7rem, 1.8vw, 0.75rem);
        padding: var(--space-xs) var(--space-sm);
        flex-shrink: 0;
    }

    .hero {
        min-height: 60vh;
        padding: clamp(3rem, 6vw, 4rem) 0;
    }

    .hero h2 {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: var(--space-md);
    }

    .hero h3 {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .hero p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: var(--space-lg);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .stat {
        padding: var(--space-md);
        margin: 0 auto;
        max-width: 200px;
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: var(--space-md) var(--space-lg);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }

    .service-card {
        padding: var(--space-lg);
        margin-bottom: var(--space-sm);
    }

    .service-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .process-steps,
    .pricing-table,
    .contact-cards,
    .features-grid,
    .discount-grid,
    .faq-grid,
    .language-price-grid,
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .contact-content,
    .quote-container,
    .map-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .social-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Enhanced Container System */
.container-fluid {
    width: 100%;
    padding: 0 var(--space-sm);
}

.container-wide {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Modern CSS Grid Layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--space-lg);
}

.grid-auto-fill {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: var(--space-md);
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

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

.glass-effect {
    background: var(--gradient-card);
    backdrop-filter: var(--blur-medium);
    -webkit-backdrop-filter: var(--blur-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.shadow-glow {
    box-shadow: var(--shadow-lg);
    transition: box-shadow var(--transition-base);
}

.shadow-glow:hover {
    box-shadow: var(--shadow-xl);
}

@media (max-width: 480px) {
    .header {
        min-height: 60px;
    }

    .nav {
        padding: var(--space-xs) 0;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: clamp(0.8rem, 4vw, 0.9rem);
    }

    .logo-text span {
        font-size: clamp(0.65rem, 3vw, 0.7rem);
    }

    .navigation ul {
        padding: var(--space-xs);
        gap: var(--space-xs);
    }

    .navigation a {
        padding: var(--space-xs);
        font-size: clamp(0.7rem, 2.5vw, 0.75rem);
    }

    .contact-info {
        font-size: clamp(0.65rem, 2vw, 0.7rem);
        padding: 4px 8px;
    }

    .contact-info i {
        font-size: 0.8em;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .container-wide {
        padding: 0 var(--space-sm);
    }

    .hero {
        padding: clamp(2.5rem, 5vw, 3rem) 0;
        min-height: 50vh;
    }

    .services,
    .pricing,
    .upload,
    .about,
    .contact,
    .testimonials {
        padding: clamp(2.5rem, 5vw, 3rem) 0;
    }

    .upload-area {
        padding: var(--space-lg) var(--space-sm);
    }

    .quote-form,
    .contact-form {
        padding: var(--space-lg) var(--space-md);
    }

    /* Mobile-specific improvements */
    .service-card i {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }

    .floating-elements {
        display: none; /* Hide complex animations on mobile */
    }

    .btn {
        font-size: var(--text-base);
        padding: var(--space-md) var(--space-lg);
    }

    /* Improve touch targets */
    .navigation a,
    .social-links a,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Live Support Widget */
.live-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.support-toggle {
    background: linear-gradient(135deg, #e91e63, #4caf50);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.support-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.support-text {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.support-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.support-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.support-header {
    background: linear-gradient(135deg, #e91e63, #4caf50);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-header h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.close-support {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-support:hover {
    background: rgba(255, 255, 255, 0.2);
}

.support-content {
    padding: 20px;
}

.support-content p {
    margin: 0 0 15px;
    font-size: 0.8rem;
    color: #4a5568;
    line-height: 1.5;
}

.support-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.support-email-btn:hover {
    background: #c2185b;
    transform: translateY(-1px);
}

.support-info {
    text-align: center;
    margin-top: 10px;
}

.support-info small {
    color: #718096;
    font-size: 0.7rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .support-panel {
        width: 280px;
        right: -10px;
    }

    .support-text {
        display: none;
    }

    .support-toggle {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Modern Animations & Loading Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(233, 30, 99, 0.4);
    }
}

/* Apply animations */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Navigation should always be visible */
.navigation,
.navigation ul,
.navigation li,
.navigation a {
    opacity: 1 !important;
    visibility: visible !important;
}

.animate-on-scroll.delay-1 {
    animation-delay: 0.2s;
}

.animate-on-scroll.delay-2 {
    animation-delay: 0.4s;
}

.animate-on-scroll.delay-3 {
    animation-delay: 0.6s;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    animation: glow 3s ease-in-out infinite;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(233, 30, 99, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth page transitions */
body {
    animation: fadeInUp 0.5s ease-out;
}

/* Enhanced hover effects */
.enhanced-hover {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.enhanced-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all var(--transition-base);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.enhanced-hover:hover::before {
    width: 300px;
    height: 300px;
}

/* WhatsApp Support Button Styles */
.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.support-whatsapp-btn,
.support-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.support-whatsapp-btn {
    background: #25D366;
}

.support-whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.support-email-btn {
    background: #e91e63;
}

.support-email-btn:hover {
    background: #c2185b;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

@media (max-width: 768px) {
    .support-buttons {
        gap: 6px;
    }

    .support-whatsapp-btn,
    .support-email-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10000;
    animation: bounce 2s infinite;
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #22c55e);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
    background: #22c55e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 1.8rem;
    line-height: 1;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Modern focus states for accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    z-index: 10000;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 6px;
}

/* Adjust live support position to avoid overlap */
.live-support {
    right: 20px;
    bottom: 20px;
}

/* Modern scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-muted);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--bg-muted);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-muted);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-whatsapp {
        left: 15px;
        bottom: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }

    .live-support {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        left: 10px;
        bottom: 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }

    .live-support {
        right: 10px;
        bottom: 15px;
    }
}