/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #BA44F2;
    --primary-dark: #9B37D4;
    --primary-light: #D9A5F5;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --text-gray-light: #999999;
    --bg-white: #FFFFFF;
    --bg-dark: #000000;
    --bg-gray: #F8F8F8;
    --border-color: #E0E0E0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    margin-bottom: 54px;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #15161A;
    transition: var(--transition-base);
    overflow: hidden;
}

.navbar-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(186, 68, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Header Particles */
.navbar-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.navbar-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(186, 68, 242, 0.5);
    border-radius: 50%;
    animation: float-navbar-particle 20s infinite linear;
}

.navbar-particles span:nth-child(1) { left: 5%; top: 10%; animation-delay: 0s; }
.navbar-particles span:nth-child(2) { left: 15%; top: 40%; animation-delay: 2s; }
.navbar-particles span:nth-child(3) { left: 25%; top: 70%; animation-delay: 4s; }
.navbar-particles span:nth-child(4) { left: 35%; top: 20%; animation-delay: 6s; }
.navbar-particles span:nth-child(5) { left: 45%; top: 60%; animation-delay: 8s; }
.navbar-particles span:nth-child(6) { left: 55%; top: 30%; animation-delay: 10s; }
.navbar-particles span:nth-child(7) { left: 65%; top: 80%; animation-delay: 12s; }
.navbar-particles span:nth-child(8) { left: 75%; top: 15%; animation-delay: 14s; }
.navbar-particles span:nth-child(9) { left: 85%; top: 50%; animation-delay: 16s; }
.navbar-particles span:nth-child(10) { left: 95%; top: 25%; animation-delay: 18s; }

@keyframes float-navbar-particle {
    0% {
        transform: translateY(100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 2;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(186, 68, 242, 0.3));
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    margin-left: auto;
    border-radius: 4px;
    color: white !important;
}




.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Images/hero1.png') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-gradient-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(186, 68, 242, 0.1) 0%, 
        rgba(102, 126, 234, 0.05) 25%, 
        rgba(186, 68, 242, 0.1) 50%, 
        rgba(102, 126, 234, 0.05) 75%, 
        rgba(186, 68, 242, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    padding: 0 24px;
    width: 100%;
    margin-bottom: 20px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -0.01em;
    font-size: clamp(2.5rem, 5vw, 3rem);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    border-radius: 50px;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-call:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    width: 450px;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: var(--transition-base);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(186, 68, 242, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--text-gray-light);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    background: rgba(186, 68, 242, 0.02);
}

.file-label:hover {
    border-color: var(--primary-color);
    background: rgba(186, 68, 242, 0.05);
}

.file-icon {
    font-size: 1.25rem;
}

.file-text {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 68, 242, 0.3);
}

.btn-arrow {
    transition: var(--transition-base);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-gray-light);
    font-size: 0.7rem;
    margin-top: 10px;
}

.trust-icon {
    font-size: 0.75rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

/* Who We Serve Section - Modern Design */
.who-we-serve {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.serve-background {
    display: none;
}

.who-we-serve .container {
    position: relative;
    z-index: 2;
}

/* Header */
.serve-header {
    text-align: center;
    margin-bottom: 80px;
}

.serve-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 1px solid rgba(186, 68, 242, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(186, 68, 242, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(186, 68, 242, 0); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ba44f2;
    border-radius: 50%;
    animation: dot-blink 1s ease-in-out infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.serve-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.title-word {
    color: var(--text-dark);
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: title-slide-up 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.3s; }

@keyframes title-slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-word.highlight {
    background: linear-gradient(135deg, #ba44f2 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 12px;
}

.serve-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    max-width: 100%;
   
    line-height: 1.6;
}

/* Grid */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Cards */
.serve-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 1px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.serve-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(186, 68, 242, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 60px rgba(186, 68, 242, 0.1);
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(186, 68, 242, 0.4) 50%, transparent 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.serve-card:hover .card-border {
    opacity: 1;
}

.card-glow {
    display: none;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 40px 28px;
}

.card-seo {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(186, 68, 242, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.serve-card:hover .card-seo {
    opacity: 1;
    transform: translateY(0);
}

/* Service SEO Descriptions */
.service-seo {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(186, 68, 242, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.sticky-card:hover .service-seo {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.project-info {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.info-tag {
    background: rgba(186, 68, 242, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(186, 68, 242, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 1;
}

.testimonials-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(186, 68, 242, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.testimonials-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(186, 68, 242, 0.03) 0%, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.03) 0%, transparent 2px);
    background-size: 40px 40px;
    animation: particleFloat 25s linear infinite;
    z-index: 3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 4;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(186, 68, 242, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(186, 68, 242, 0.15);
    border-color: rgba(186, 68, 242, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: block;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-role {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.author-location {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Urgency CTA Styles - Matching Footer */
.urgency-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.cta-urgency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(190, 63, 254, 0.1) 0%, transparent 70%);
    z-index: 3;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190, 63, 254, 0.2);
    border: 1px solid rgba(190, 63, 254, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    z-index: 4;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    background: #BE3FFE;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.urgency-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.25rem;
}

.btn-cta-urgent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BE3FFE;
    color: #000000;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-urgent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.3);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #BE3FFE;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.trust-text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.9rem;
    text-align: center;
}

/* Update CTA subtitle color */
.urgency-cta .cta-subtitle {
    color: rgba(0, 0, 0, 0.9) !important;
}
.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.trust-metric-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(186, 68, 242, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(186, 68, 242, 0.02) 0%, 
        rgba(102, 126, 234, 0.02) 50%, 
        rgba(186, 68, 242, 0.02) 100%);
    z-index: 1;
}

.metric-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(186, 68, 242, 0.1) 0%, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(186, 68, 242, 0.08) 0%, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(102, 126, 234, 0.08) 0%, transparent 1px);
    background-size: 30px 30px, 25px 25px, 20px 20px, 35px 35px;
    animation: particleFloat 20s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trust-metric-item:hover .metric-particles {
    opacity: 1;
}

.featured-particles {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(186, 68, 242, 0.2) 0%, transparent 3px),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 3px),
        radial-gradient(circle at 40% 60%, rgba(186, 68, 242, 0.15) 0%, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 2px);
    background-size: 25px 25px, 20px 20px, 15px 15px, 30px 30px;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -10px) rotate(120deg); }
    66% { transform: translate(10px, -5px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.trust-metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left;
}

.trust-metric-item:hover::before {
    transform: scaleX(1);
}

.trust-metric-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(186, 68, 242, 0.2),
        0 0 80px rgba(186, 68, 242, 0.15),
        inset 0 0 30px rgba(186, 68, 242, 0.05);
    border-color: rgba(186, 68, 242, 0.4);
}

.trust-metric-item.featured {
    background: linear-gradient(135deg, 
        rgba(186, 68, 242, 0.15) 0%, 
        rgba(102, 126, 234, 0.08) 50%, 
        rgba(186, 68, 242, 0.15) 100%);
    border: 2px solid rgba(186, 68, 242, 0.4);
    transform: scale(1.05);
    position: relative;
    z-index: 10;
}

.metric-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(186, 68, 242, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.trust-metric-item.featured::before {
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--primary-light) 25%, 
        var(--primary-color) 50%, 
        var(--primary-light) 75%, 
        var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: shimmerFlow 2s linear infinite;
}

@keyframes shimmerFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.metric-number-counter {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.metric-number-static {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.metric-icon.pulse-glow {
    animation: iconPulseGlow 3s ease-in-out infinite;
}

@keyframes iconPulseGlow {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px rgba(186, 68, 242, 0.3));
    }
    50% { 
        transform: scale(1.05); 
        filter: drop-shadow(0 0 20px rgba(186, 68, 242, 0.6));
    }
}

.metric-icon.shield {
    animation: iconShield 4s ease-in-out infinite;
}

@keyframes iconShield {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.metric-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.metric-icon.bounce {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.trust-metric-item:hover .metric-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(186, 68, 242, 0.3));
}

/* Rating Display */
.metric-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.rating-stars {
    font-size: 1.5rem;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
    animation: starShimmer 3s ease-in-out infinite;
}

@keyframes starShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.rating-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.metric-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.trust-metric-item:hover .metric-label {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.trust-metric-item:hover .metric-desc {
    color: var(--text-dark);
}

.metric-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(186, 68, 242, 0.1);
    overflow: hidden;
    z-index: 2;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-metric-item:hover .progress-fill {
    width: 100%;
}

.featured-fill {
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--primary-light) 50%, 
        var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: progressFlow 2s linear infinite;
}

@keyframes progressFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Trust Badges */
.trust-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    z-index: 3;
    animation: badgeFloat 3s ease-in-out infinite;
}

.trust-badge.made-in-india {
    background: linear-gradient(135deg, #ff9933, #ff6b35);
    box-shadow: 0 2px 10px rgba(255, 153, 51, 0.3);
}

.trust-badge.security {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(186, 68, 242, 0.3);
    z-index: 3;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 1px solid rgba(186, 68, 242, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.serve-card:hover .icon-bg {
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(186, 68, 242, 0.2);
}

.icon-bg svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.icon-bg .icon-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.serve-card:hover .icon-bg svg {
    color: #ba44f2;
    transform: scale(1.1);
}

.icon-float {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.5rem;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-stats {
    display: flex;
    gap: 8px;
}

.stat {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 1px solid rgba(186, 68, 242, 0.15);
    border-radius: 20px;
    color: #ba44f2;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.serve-card:hover .stat {
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    color: #ba44f2;
}

/* CTA Link */
.serve-cta {
    text-align: center;
}

.serve-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    padding: 16px 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.serve-cta-link:hover {
    background: rgba(186, 68, 242, 0.05);
    border-color: rgba(186, 68, 242, 0.3);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 68, 242, 0.15);
}

.cta-arrow {
    color: #ba44f2;
    font-weight: 600;
    transition: all 0.3s ease;
}

.serve-cta-link:hover .cta-arrow {
    transform: translateX(4px);
}

/* Contact Page Styles */

/* Contact Hero Section - Clean Modern Design */
.contact-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: #000000;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 63, 254, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(190, 63, 254, 0.06) 0%, transparent 50%);
    z-index: 2;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
    color: #ffffff;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
    color: #ffffff;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }

.title-line.highlight {
    background: linear-gradient(135deg, #BE3FFE, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #BE3FFE;
    color: #000000;
    border: 2px solid #BE3FFE;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(190, 63, 254, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon,
.btn-outline:hover .btn-icon {
    transform: scale(1.1);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(190, 63, 254, 0.1);
    border-color: rgba(190, 63, 254, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

.trust-icon {
    font-size: 1.2rem;
    color: #BE3FFE;
}

.trust-text {
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Get in Touch Section */
.get-in-touch {
    padding: 80px 0;
    background: #ffffff;
}

.get-in-touch .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.get-in-touch .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.get-in-touch .section-header p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.touch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.touch-card {
    background: #ffffff;
    border: 2px solid #BE3FFE;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.touch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #BE3FFE;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.touch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 63, 254, 0.2);
}

.touch-card:hover::before {
    transform: scaleX(1);
}

.touch-icon {
    font-size: 3rem;
    color: #BE3FFE;
    margin-bottom: 20px;
    display: block;
}

.touch-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.touch-card p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #000000;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-form-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.2);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(190, 63, 254, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #BE3FFE;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(190, 63, 254, 0.2);
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .file-upload {
    position: relative;
}

.contact-form .file-upload input[type="file"] {
    display: none;
}

.contact-form .file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    background: rgba(190, 63, 254, 0.1);
    border: 2px dashed #BE3FFE;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .file-label:hover {
    background: rgba(190, 63, 254, 0.2);
    border-color: #ffffff;
}

.file-icon {
    font-size: 2.5rem;
    color: #BE3FFE;
}

.file-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.file-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

.form-microcopy {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.microcopy-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.microcopy-icon {
    color: #BE3FFE;
}

/* Contact Form Responsive Design */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .contact-form-section .section-header p {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form textarea {
        min-height: 100px;
    }
    
    .contact-form .file-label {
        padding: 20px 16px;
    }
    
    .file-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .file-text {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .file-hint {
        font-size: 0.75rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .form-microcopy {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }
    
    .microcopy-item {
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 40px 20px;
    }
    
    .contact-form-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-section .section-header p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .contact-form .form-row {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .contact-form .form-group {
        margin-bottom: 16px;
    }
    
    .contact-form label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .contact-form textarea {
        min-height: 90px;
    }
    
    .contact-form .file-label {
        padding: 16px 12px;
    }
    
    .file-icon {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .file-text {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .file-hint {
        font-size: 0.7rem;
        max-width: 240px;
        line-height: 1.3;
    }
    
    .form-microcopy {
        gap: 12px;
        margin-top: 20px;
    }
    
    .microcopy-item {
        font-size: 0.75rem;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.contact-info-section .section-header p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: #ffffff;
    border: 2px solid #BE3FFE;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 63, 254, 0.2);
}

.info-icon {
    font-size: 3rem;
    color: #BE3FFE;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.info-link {
    color: #BE3FFE;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #000000;
}

.info-card p {
    color: rgba(0, 0, 0, 0.6);
    margin-top: 8px;
}

.info-card .address {
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #000000;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.map-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.map-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Why Contact Section */
.why-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-contact-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.why-contact-section .section-header p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border: 2px solid #BE3FFE;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 63, 254, 0.2);
}

.trust-number {
    font-size: 3rem;
    font-weight: 900;
    color: #BE3FFE;
    margin-bottom: 12px;
    display: block;
}

.trust-label {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #000000;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.faq-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #BE3FFE;
    box-shadow: 0 5px 20px rgba(190, 63, 254, 0.1);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(190, 63, 254, 0.1);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #BE3FFE;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #BE3FFE 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::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 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles for Contact Page */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Gallery Page Styles */

/* Gallery Hero Section */
.gallery-hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: #000000;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.gallery-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gallery-hero .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 63, 254, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(190, 63, 254, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(190, 63, 254, 0.05) 0%, transparent 60%);
    z-index: 2;
    animation: galleryGradientShift 12s ease-in-out infinite;
}

@keyframes galleryGradientShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 30%, rgba(190, 63, 254, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(190, 63, 254, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(190, 63, 254, 0.05) 0%, transparent 60%);
    }
    33% { 
        background: 
            radial-gradient(circle at 30% 40%, rgba(190, 63, 254, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(190, 63, 254, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(190, 63, 254, 0.07) 0%, transparent 60%);
    }
    66% { 
        background: 
            radial-gradient(circle at 40% 20%, rgba(190, 63, 254, 0.18) 0%, transparent 50%),
            radial-gradient(circle at 60% 80%, rgba(190, 63, 254, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(190, 63, 254, 0.09) 0%, transparent 60%);
    }
}

.gallery-hero .hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(190, 63, 254, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(190, 63, 254, 0.03) 50%, transparent 52%);
    background-size: 60px 60px;
    z-index: 3;
    animation: textureMove 20s linear infinite;
}

@keyframes textureMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, -60px -60px; }
}

.gallery-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(190, 63, 254, 0.04) 0%, transparent 2px),
        radial-gradient(circle at 85% 85%, rgba(190, 63, 254, 0.04) 0%, transparent 2px),
        radial-gradient(circle at 45% 45%, rgba(190, 63, 254, 0.03) 0%, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(190, 63, 254, 0.03) 0%, transparent 2px);
    background-size: 50px 50px, 70px 70px, 40px 40px;
    animation: particleFloat 40s linear infinite;
    z-index: 4;
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}

.gallery-hero .title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

.gallery-hero .title-line:nth-child(1) { animation-delay: 0.1s; }
.gallery-hero .title-line:nth-child(2) { animation-delay: 0.3s; }

.gallery-hero .title-line.highlight {
    background: linear-gradient(135deg, #BE3FFE, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.gallery-hero .stat-item {
    text-align: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery-hero .stat-item:hover {
    background: rgba(190, 63, 254, 0.1);
    border-color: #BE3FFE;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 63, 254, 0.2);
}

.gallery-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #BE3FFE;
    margin-bottom: 8px;
    line-height: 1;
}

.gallery-hero .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 100px 0;
    background: #ffffff;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.preview-item {
    background: #ffffff;
    border: 2px solid #BE3FFE;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(190, 63, 254, 0.25);
}

.preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BE3FFE, #ffffff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.preview-item:hover::before {
    transform: scaleX(1);
}

.preview-image {
    height: 250px;
    background: linear-gradient(135deg, rgba(190, 63, 254, 0.1), rgba(190, 63, 254, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(190, 63, 254, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.preview-item:hover .preview-image::after {
    transform: translateX(100%);
}

.image-placeholder {
    text-align: center;
    z-index: 2;
    position: relative;
}

.placeholder-icon {
    font-size: 4rem;
    color: #BE3FFE;
    display: block;
    margin-bottom: 16px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

.preview-content {
    padding: 32px;
}

.preview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.preview-content p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* Gallery Page Works Section - Unique Classes */
.gallery-page-works-unique-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-page-works-unique-section .gallery-page-header-unique {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-page-works-unique-section .gallery-page-title-unique {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gallery-page-works-unique-section .gallery-page-subtitle-unique {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-page-grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-page-item-unique {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-page-item-unique:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-page-image-unique {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-page-item-unique:hover .gallery-page-image-unique {
    transform: scale(1.08);
}

.gallery-page-item-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-page-item-unique:hover::before {
    opacity: 1;
}

/* Gallery Page Modal - Unique Classes */
.gallery-modal-unique {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-modal-unique.active {
    display: flex;
}

.gallery-modal-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-close-unique {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-close-unique:hover {
    background: #BE3FFE;
    border-color: #BE3FFE;
    color: #000000;
    transform: scale(1.1);
}

.gallery-modal-prev-unique,
.gallery-modal-next-unique {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-prev-unique {
    left: 30px;
}

.gallery-modal-next-unique {
    right: 30px;
}

.gallery-modal-prev-unique:hover,
.gallery-modal-next-unique:hover {
    background: #BE3FFE;
    border-color: #BE3FFE;
    color: #000000;
    transform: scale(1.1);
}

.gallery-modal-image-unique {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.gallery-modal-caption-unique {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* ===============================
   FUTURISTIC GALLERY STYLES
================================ */

/* Gallery Header */
.neo-gallery-header-x91 {
    text-align: center;
    margin-bottom: 60px;
}

.neo-gallery-title-x91 {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.neo-gallery-subtitle-x91 {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Wrapper */
#neo-gallery-wrap-x91 {
    padding: 80px 6%;
    background: #ffffff;
}

/* Gallery Grid */
.neo-gallery-grid-x91 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Card */
.neo-gallery-card-x91 {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(145deg, #121622, #0b0e16);
    transform: translateY(20px);
    opacity: 0;
    animation: neoFadeUp-x91 0.9s ease forwards;
}

/* Stagger animation */
.neo-gallery-card-x91:nth-child(1) { animation-delay: 0.1s; }
.neo-gallery-card-x91:nth-child(2) { animation-delay: 0.2s; }
.neo-gallery-card-x91:nth-child(3) { animation-delay: 0.3s; }
.neo-gallery-card-x91:nth-child(4) { animation-delay: 0.4s; }
.neo-gallery-card-x91:nth-child(5) { animation-delay: 0.5s; }
.neo-gallery-card-x91:nth-child(6) { animation-delay: 0.6s; }
.neo-gallery-card-x91:nth-child(7) { animation-delay: 0.7s; }
.neo-gallery-card-x91:nth-child(8) { animation-delay: 0.8s; }
.neo-gallery-card-x91:nth-child(9) { animation-delay: 0.9s; }

/* Hover Effect */
.neo-gallery-card-x91:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 35px 90px rgba(190, 63, 254, 0.18);
}

/* Card Image */
.neo-gallery-card-x91 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.neo-gallery-card-x91:hover img {
    transform: scale(1.1);
}

/* Futuristic Lightbox */
#neo-lightbox-x91 {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 14, 0.92);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

#neo-lightbox-x91.neo-active-x91 {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Image */
.neo-lightbox-image-x91 {
    max-width: 85%;
    max-height: 70vh;
    border-radius: 14px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
    animation: neoZoomIn-x91 0.5s ease;
}

/* Lightbox Caption */
.neo-lightbox-caption-x91 {
    margin-top: 22px;
    font-size: 15px;
    letter-spacing: 0.6px;
    opacity: 0.85;
    color: #ffffff;
    text-align: center;
}

/* Close Button */
.neo-lightbox-close-x91 {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.neo-lightbox-close-x91:hover {
    opacity: 1;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes neoFadeUp-x91 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes neoZoomIn-x91 {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .neo-gallery-grid-x91 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .neo-gallery-grid-x91 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neo-gallery-title-x91 {
        font-size: 2.2rem;
    }
    
    .neo-gallery-subtitle-x91 {
        font-size: 1.1rem;
    }
    
    #neo-gallery-wrap-x91 {
        padding: 60px 4%;
    }
    
    .neo-lightbox-close-x91 {
        top: 15px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    .neo-lightbox-image-x91 {
        max-width: 90%;
        max-height: 60vh;
    }
}

/* ===============================
   ABOUT PAGE HERO STYLES
================================ */

.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

.about-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(190, 63, 254, 0.15) 0%, 
        rgba(147, 51, 234, 0.1) 25%, 
        rgba(124, 58, 237, 0.05) 50%, 
        rgba(109, 40, 217, 0.1) 75%, 
        rgba(91, 33, 182, 0.15) 100%
    );
    animation: gradientShift 8s ease-in-out infinite;
}

.about-hero .hero-texture {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(190, 63, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: textureFloat 12s ease-in-out infinite;
}

.about-hero .hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-hero .hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(190, 63, 254, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.about-hero .hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.about-hero .hero-particles span:nth-child(2) { left: 20%; animation-delay: 2s; }
.about-hero .hero-particles span:nth-child(3) { left: 30%; animation-delay: 4s; }
.about-hero .hero-particles span:nth-child(4) { left: 40%; animation-delay: 6s; }
.about-hero .hero-particles span:nth-child(5) { left: 50%; animation-delay: 8s; }
.about-hero .hero-particles span:nth-child(6) { left: 60%; animation-delay: 10s; }
.about-hero .hero-particles span:nth-child(7) { left: 70%; animation-delay: 12s; }
.about-hero .hero-particles span:nth-child(8) { left: 80%; animation-delay: 14s; }
.about-hero .hero-particles span:nth-child(9) { left: 90%; animation-delay: 16s; }
.about-hero .hero-particles span:nth-child(10) { left: 95%; animation-delay: 18s; }

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 0;
    animation: fadeInUp 1s ease-out;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(190, 63, 254, 0.15);
    border: 1px solid rgba(190, 63, 254, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

.about-hero .badge-pulse {
    width: 8px;
    height: 8px;
    background: #BE3FFE;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.about-hero .badge-text {
    color: #BE3FFE;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-hero .hero-title {
    margin-bottom: 15px;
}

.about-hero .title-line {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 8px;
    opacity: 1 !important;
    transform: none !important;
    animation: slideInLeft 0.8s ease-out !important;
}

.about-hero .title-line.highlight {
    background: linear-gradient(135deg, #BE3FFE, #9333EA, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1 !important;
    transform: none !important;
    animation: slideInRight 0.8s ease-out 0.2s both !important;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.4s both;
}

.about-hero .hero-cta {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* About Stats Section */
.about-stats-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-stats-section .stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-stats-section .stat-item {
    text-align: center;
}

.about-stats-section .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #BE3FFE;
    margin-bottom: 10px;
    animation: countUp 2s ease-out 0.2s both;
}

.about-stats-section .stat-label {
    font-size: 1rem;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(20px); }
}

@keyframes textureFloat {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    50% { transform: translateX(30px) translateY(-30px) scale(1.1); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1366px) {
    .about-hero {
        min-height: 80vh;
    }
    
    .about-hero .hero-content {
        padding: 80px 0;
        max-width: 700px;
    }
    
    .about-hero .hero-badge {
        margin-bottom: 15px;
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .about-hero .title-line {
        font-size: 2.8rem;
        margin-bottom: 6px;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: 600px;
    }
    
    .about-hero .hero-cta {
        margin-bottom: 25px;
    }
    
    .about-stats-section .stats-grid {
        gap: 60px;
    }
    
    .about-stats-section .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero .title-line {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .about-hero .hero-title {
        margin-bottom: 15px;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .about-hero .hero-cta {
        margin-bottom: 30px;
    }
    
    .about-stats-section {
        padding: 40px 0;
    }
    
    .about-stats-section .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-stats-section .stat-number {
        font-size: 2.2rem;
    }
    
    .about-stats-section .stat-label {
        font-size: 0.9rem;
    }
}

/* ===============================
   ABOUT PAGE CONTENT SECTIONS
================================ */

/* About Content Section */
.about-content {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.about-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #BE3FFE, #9333EA);
    border-radius: 2px;
}

.about-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Relationship Section */
.brand-relationship {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.brand-relationship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(190, 63, 254, 0.05) 0%, transparent 70%);
}

.brand-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.brand-header {
    margin-bottom: 50px;
}

.brand-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.brand-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #BE3FFE, #9333EA, #7C3AED);
    margin: 0 auto;
    border-radius: 2px;
}

.brand-description {
    margin-bottom: 60px;
}

.brand-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.brand-visual {
    margin-top: 40px;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(190, 63, 254, 0.15);
}

.morphz-logo span:first-child {
    display: block;
    font-size: 1.875rem;
    font-weight: 900;
    color: #BE3FFE;
    margin-bottom: 8px;
}

.infinite-logo span:first-child {
    display: block;
    font-size: 1.875rem;
    font-weight: 900;
    color: #9333EA;
    margin-bottom: 8px;
}

.logo-tagline {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.brand-connector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #BE3FFE, #9333EA);
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: #BE3FFE;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #BE3FFE, #9333EA, #7C3AED);
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(190, 63, 254, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(190, 63, 254, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(190, 63, 254, 0.1) 0%, transparent 50%);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.philosophy-header {
    margin-bottom: 60px;
}

.philosophy-header .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.philosophy-text {
    margin-bottom: 80px;
}

.philosophy-main {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.philosophy-value {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(190, 63, 254, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.philosophy-value:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #BE3FFE;
    line-height: 1;
    min-width: 60px;
}

.value-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-title,
    .services-header .section-title,
    .philosophy-header .section-title {
        font-size: 2rem;
    }
    
    .brand-text,
    .philosophy-main {
        font-size: 1.1rem;
    }
    
    .brand-logo-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .brand-connector {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-values {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-value {
        flex-direction: column;
        text-align: center;
    }
    
    .value-number {
        margin: 0 auto 15px;
    }
}

/* ===============================
   WHY MORPH-Z SECTION STYLES
================================ */

.why-morphz-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.why-morphz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(190, 63, 254, 0.05) 0%, transparent 50%);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-header .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(190, 63, 254, 0.1);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BE3FFE, #9333EA, #7C3AED);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(190, 63, 254, 0.2);
}

.why-icon-wrapper {
    position: relative;
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
}

.why-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: iconFloat 3s ease-in-out infinite;
}

.why-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(190, 63, 254, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

.why-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.why-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.why-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #BE3FFE;
    font-weight: 500;
}

.feature-check {
    font-weight: 700;
    font-size: 1rem;
}

/* ===============================
   CLIENTS SECTION STYLES
================================ */

.clients-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(190, 63, 254, 0.1) 0%, transparent 50%);
}

.clients-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-header .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.clients-main-text {
    text-align: center;
    margin-bottom: 80px;
}

.clients-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.client-category {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(190, 63, 254, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.client-category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(190, 63, 254, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.client-category:hover::before {
    opacity: 1;
}

.client-category:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(190, 63, 254, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: clientIconBounce 2s ease-in-out infinite;
}

.client-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.client-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.client-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.project-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(190, 63, 254, 0.2);
    border: 1px solid rgba(190, 63, 254, 0.3);
    border-radius: 50px;
    color: #BE3FFE;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: rgba(190, 63, 254, 0.3);
    transform: scale(1.05);
}

.clients-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(190, 63, 254, 0.2);
    position: relative;
    overflow: hidden;
}

.clients-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(190, 63, 254, 0.1), rgba(147, 51, 234, 0.05));
    animation: ctaShimmer 3s ease-in-out infinite;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(190, 63, 254, 0.1);
    border: 1px solid rgba(190, 63, 254, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #BE3FFE;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    color: #BE3FFE;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Additional Animations */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes clientIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ctaShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Additional Responsive Design */
@media (max-width: 768px) {
    .why-header .section-title,
    .clients-header .section-title {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .clients-description {
        font-size: 1.2rem;
    }
    
    .clients-cta {
        padding: 40px 20px;
    }
}

.morphz-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.morphz-gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.morphz-gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.morphz-gallery-item:hover .morphz-gallery-image {
    transform: scale(1.08);
}

.morphz-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.morphz-gallery-item:hover::before {
    opacity: 1;
}

/* Gallery Page Lightbox - Unique Classes */
.morphz-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.morphz-lightbox.active {
    display: flex;
}

.morphz-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.morphz-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morphz-lightbox-close:hover {
    background: #BE3FFE;
    border-color: #BE3FFE;
    color: #000000;
    transform: scale(1.1);
}

.morphz-lightbox-prev,
.morphz-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morphz-lightbox-prev {
    left: 30px;
}

.morphz-lightbox-next {
    right: 30px;
}

.morphz-lightbox-prev:hover,
.morphz-lightbox-next:hover {
    background: #BE3FFE;
    border-color: #BE3FFE;
    color: #000000;
    transform: scale(1.1);
}

.morphz-lightbox-image {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.morphz-lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design for Gallery Page */
@media (max-width: 768px) {
    .morphz-gallery-page-section .morphz-gallery-title {
        font-size: 2.2rem;
    }
    
    .morphz-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
    
    .morphz-gallery-image {
        height: 250px;
    }
    
    .morphz-lightbox-close {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .morphz-lightbox-prev,
    .morphz-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .morphz-lightbox-prev {
        left: 15px;
    }
    
    .morphz-lightbox-next {
        right: 15px;
    }
    
    .morphz-lightbox-caption {
        bottom: 15px;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .who-we-serve {
        padding: 80px 0;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .serve-header {
        margin-bottom: 50px;
    }
    
    .card-content {
        padding: 32px 24px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .icon-bg svg {
        width: 30px;
        height: 30px;
    }
    
    .trust-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .trust-metric-item {
        padding: 32px 20px;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .metric-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .metric-icon {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .metric-label {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .metric-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .metric-progress {
        margin-bottom: 12px;
    }
    
    .trust-badge, .featured-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    /* Fix NDA Protected card issues for tablet */
    .metric-rating {
        margin-bottom: 14px;
        gap: 7px;
    }
    
    .rating-stars {
        font-size: 1.3rem;
        line-height: 1;
    }
    
    .rating-number {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .metric-icon.shield {
        margin-bottom: 14px;
        font-size: 1.2rem;
    }
    
    .metric-icon.shield svg {
        width: 28px;
        height: 28px;
    }
}

/* Small Mobile Improvements for Why Choose MORPH-Z */
@media (max-width: 480px) {
    .trust-metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        margin-top: 30px;
    }
    
    .trust-metric-item {
        padding: 28px 18px;
        min-height: 240px;
    }
    
    .metric-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .metric-icon {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .metric-label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .metric-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .trust-badge, .featured-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .why-choose-panel {
        padding: 60px 0;
    }
    
    .why-choose-panel .section-title {
        margin-bottom: 30px;
        font-size: 1.8rem;
    }
    
    /* Fix NDA Protected card issues */
    .metric-rating {
        margin-bottom: 12px;
        gap: 6px;
    }
    
    .rating-stars {
        font-size: 1.2rem;
        line-height: 1;
    }
    
    .rating-number {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .metric-icon.shield {
        margin-bottom: 12px;
        font-size: 1.1rem;
    }
    
    .metric-icon.shield svg {
        width: 24px;
        height: 24px;
    }
}

/* Enhanced Services Hero */
.services-hero.enhanced-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 63, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(190, 63, 254, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(190, 63, 254, 0.03) 0%, transparent 2px),
        radial-gradient(circle at 85% 85%, rgba(190, 63, 254, 0.03) 0%, transparent 2px);
    background-size: 30px 30px;
    animation: particleFloat 20s linear infinite;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Modern Services Section - Completely New Design */
.modern-services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.modern-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(190, 63, 254, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(190, 63, 254, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

.services-main-subtitle {
    font-size: 1.25rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.modern-service-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(190, 63, 254, 0.08);
    position: relative;
}

.modern-service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(190, 63, 254, 0.15);
    border-color: rgba(190, 63, 254, 0.2);
}

.service-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-service-item:hover .service-img {
    transform: scale(1.1);
}

.service-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-number-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #BE3FFE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.3);
}

.service-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #BE3FFE;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-service-item:hover .service-accent-line {
    transform: scaleX(1);
}

.service-content {
    padding: 32px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-category {
    background: rgba(190, 63, 254, 0.1);
    color: #BE3FFE;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(190, 63, 254, 0.2);
}

.service-trust-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-tag {
    background: #000000;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-benefit-box {
    background: rgba(190, 63, 254, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.1);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text {
    color: #BE3FFE;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-check {
    color: #BE3FFE;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.modern-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: #BE3FFE;
    color: white;
    box-shadow: 0 4px 15px rgba(190, 63, 254, 0.3);
    flex: 1;
    justify-content: center;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.primary-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.secondary-btn {
    background: white;
    color: #BE3FFE;
    border: 2px solid #BE3FFE;
    flex: 1;
    justify-content: center;
}

.secondary-btn:hover {
    background: #BE3FFE;
    color: white;
    transform: translateY(-2px);
}

/* Pricing Transparency Section */
.pricing-transparency {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.pricing-transparency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(190, 63, 254, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(190, 63, 254, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: rgba(190, 63, 254, 0.05);
    border: 2px solid rgba(190, 63, 254, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pricing-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(190, 63, 254, 0.15);
}

.pricing-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.pricing-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.price-amount {
    color: #BE3FFE;
    font-weight: 900;
    font-size: 2rem;
}

.pricing-text p {
    color: #666666;
    font-size: 1.1rem;
    margin: 0;
}

.discount-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.discount-card {
    padding: 24px;
    background: white;
    border: 1px solid rgba(190, 63, 254, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discount-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(190, 63, 254, 0.12);
    border-color: rgba(190, 63, 254, 0.3);
}

.discount-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.discount-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.discount-content p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.discount-badge {
    display: inline-block;
    background: #BE3FFE;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(190, 63, 254, 0.2);
}

.pricing-features {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-features h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #666666;
    font-size: 0.95rem;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #BE3FFE;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-cta-text {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 24px;
    font-weight: 600;
}

.pricing-btn {
    background: #BE3FFE;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(190, 63, 254, 0.4);
}

/* Enhanced Process Section */
.enhanced-process {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.process-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(190, 63, 254, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(190, 63, 254, 0.06) 0%, transparent 50%);
    z-index: 2;
}

.process-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 2px);
    background-size: 40px 40px;
    animation: particleFloat 30s linear infinite;
    z-index: 3;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 4;
}

.process-header .section-title {
    color: white;
}

.process-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 4;
}

.process-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(190, 63, 254, 0.2);
    border-color: rgba(190, 63, 254, 0.3);
}

.process-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.process-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #BE3FFE;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.3);
}

.process-icon {
    font-size: 1.8rem;
    color: white;
}

.process-number {
    width: 40px;
    height: 40px;
    background: rgba(190, 63, 254, 0.1);
    border: 2px solid #BE3FFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #BE3FFE;
    font-size: 1.1rem;
}

.process-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.process-info p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.risk-reduction {
    background: rgba(190, 63, 254, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BE3FFE;
    font-weight: 600;
    font-size: 0.95rem;
}

.risk-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-trust-banner {
    background: rgba(190, 63, 254, 0.1);
    border: 2px solid rgba(190, 63, 254, 0.2);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.trust-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.trust-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.trust-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Mobile Responsive for Pricing and Process */
@media (max-width: 768px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .discount-options {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-highlight {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .services-main-title {
        font-size: 2.5rem;
    }
    
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .modern-btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-actions {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 16px;
        margin: 0 -24px -24px -24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}
.service-card.enhanced-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(186, 68, 242, 0.1);
    position: relative;
}

.service-card.enhanced-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(186, 68, 242, 0.15);
    border-color: rgba(186, 68, 242, 0.3);
}

.trust-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.service-benefit {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding: 8px 0;
    border-top: 1px solid rgba(186, 68, 242, 0.1);
    border-bottom: 1px solid rgba(186, 68, 242, 0.1);
}

/* Use-Case Guidance Section */
.use-case-guidance {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.guidance-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.guidance-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(190, 63, 254, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(190, 63, 254, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.guidance-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(190, 63, 254, 0.02) 0%, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(190, 63, 254, 0.02) 0%, transparent 2px);
    background-size: 40px 40px;
    animation: particleFloat 25s linear infinite;
    z-index: 3;
}

.guidance-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 4;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 4;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    background: #BE3FFE;
    color: white;
    padding: 20px;
}

.header-cell {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    align-items: center;
}

.table-row:hover {
    background: rgba(190, 63, 254, 0.03);
    transform: translateX(8px);
}

.table-row:last-child {
    border-bottom: none;
}

.cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
}

.need-cell {
    font-weight: 600;
    color: #000000;
}

.need-icon {
    font-size: 1.5rem;
}

.service-cell {
    justify-content: center;
}

.service-tag {
    background: #BE3FFE;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(190, 63, 254, 0.2);
}

.benefit-cell {
    color: #666666;
    font-size: 0.9rem;
}

.guidance-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 4;
}

.guidance-text {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.guidance-btn {
    background: #BE3FFE;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.3);
}

.guidance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(190, 63, 254, 0.4);
}

/* Mobile Responsive for Service Cards */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .service-card-ctas {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 10;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cell {
        padding: 8px 0;
    }
    
    .service-cell {
        justify-content: flex-start;
    }
}

/* Services Overview - Sticky Cards */
.services-sticky {
    padding: 120px 0;
    background: var(--bg-gray);
    min-height: 100vh;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-title {
    margin-bottom: 16px;
}

.services-header .section-subtitle {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: var(--text-gray);
}

.sticky-cards-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.sticky-card {
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-card[data-index="1"] { top: 100px; z-index: 1; }
.sticky-card[data-index="2"] { top: 120px; z-index: 2; }
.sticky-card[data-index="3"] { top: 140px; z-index: 3; }
.sticky-card[data-index="4"] { top: 160px; z-index: 4; }
.sticky-card[data-index="5"] { top: 180px; z-index: 5; }
.sticky-card[data-index="6"] { top: 200px; z-index: 6; }

.sticky-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-card:hover .sticky-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(186, 68, 242, 0.15);
    border-color: var(--primary-color);
}

.sticky-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.sticky-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-card:hover .sticky-card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
}

.card-number {
    background: var(--primary-color);
    color: var(--text-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 16px rgba(186, 68, 242, 0.4);
}

.sticky-card-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-card-content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sticky-card-content p {
    color: var(--text-gray);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.card-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Alternate card layout */
.sticky-card:nth-child(even) .sticky-card-inner {
    direction: rtl;
}

.sticky-card:nth-child(even) .sticky-card-content {
    direction: ltr;
}

/* Card stacking effect */
.sticky-card {
    transform-origin: center top;
}

.sticky-card.scrolled {
    transform: scale(0.95);
    opacity: 0.7;
}

/* Responsive Design for Sticky Cards */
@media (max-width: 768px) {
    .services-sticky {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 48px;
    }
    
    .services-header .section-subtitle {
        font-size: 1.125rem;
    }
    
    .sticky-card {
        position: relative;
        top: 0 !important;
        margin-bottom: 24px;
    }
    
    .sticky-card-inner {
        grid-template-columns: 1fr;
    }
    
    .sticky-card-image {
        height: 200px;
    }
    
    .sticky-card-content {
        padding: 28px;
    }
    
    .sticky-card-content h3 {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .sticky-card-content p {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .sticky-card:nth-child(even) .sticky-card-inner {
        direction: ltr;
    }
}

@media (max-width: 480px) {
    .services-sticky {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 32px;
    }
    
    .sticky-card-image {
        height: 180px;
    }
    
    .sticky-card-content {
        padding: 24px;
    }
    
    .sticky-card-content h3 {
        font-size: 1.25rem;
    }
    
    .sticky-card-content p {
        font-size: 0.875rem;
    }
    
    .card-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Why Choose Section - Image Grid with Horizontal Scroll */
.why-choose-sticky {
    position: relative;
    height: 300vh;
}

.why-choose-horizontal-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-white);
    display: flex;
    align-items: center;
}

.why-choose-horizontal-track {
    display: flex;
    width: 100%;
    transform: translateX(100%);
    will-change: transform;
}

.why-choose-panel {
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.why-choose-panel .container {
    width: 100%;
    max-width: 1200px;
}

.why-choose-panel .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-choose-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-8px);
}

.why-choose-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.why-choose-item:hover .why-choose-image {
    box-shadow: 0 12px 40px rgba(186, 68, 242, 0.2);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-item:hover .why-choose-image img {
    transform: scale(1.05);
}

.why-choose-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .why-choose-sticky {
        height: auto;
    }
    
    .why-choose-horizontal-wrapper {
        position: relative;
        height: auto;
        overflow: visible;
    }
    
    .why-choose-horizontal-track {
        transform: none !important;
    }
    
    .why-choose-panel {
        min-width: auto;
        padding: 80px 0;
    }
    
    .why-choose-panel .section-title {
        margin-bottom: 40px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-choose-image {
        border-radius: 16px;
    }
    
    .why-choose-item h4 {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .why-choose-panel {
        padding: 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose-image {
        aspect-ratio: 16/9;
    }
}

/* Mini Gallery - Sticky Horizontal Scroll from Left */
.gallery-sticky {
    height: 180vh;
    position: relative;
    background: var(--bg-white);
}

.gallery-horizontal-wrapper {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: var(--bg-white);
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
}

.gallery-horizontal-track {
    display: flex;
    width: 100%;
    transform: translateX(-100%); /* Start from left (off-screen), will slide right into view */
    will-change: transform;
}

.gallery-panel {
    min-width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0 40px;
}

.gallery-panel .container {
    max-width: 1400px;
    padding: 0 40px;
}

.gallery-panel .section-title {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

/* Improved Gallery Grid Design */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
    margin-bottom: 20px;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item.large {
    display: none;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: var(--text-light);
    padding: 20px 16px;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 700;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin: 0;
}

.gallery-cta {
    text-align: center;
    padding-top: 20px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 160px);
        gap: 12px;
    }
    
    .gallery-item:first-child {
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-sticky {
        height: 120vh;
    }
    
    .gallery-horizontal-wrapper {
        top: 70px;
        height: calc(100vh - 70px);
        padding-top: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 140px);
        gap: 12px;
    }
    
    .gallery-item:first-child {
        grid-row: span 2;
        grid-column: span 1;
    }
    
    .gallery-panel .section-title {
        margin-bottom: 16px;
        font-size: 1.5rem;
    }
    
    .gallery-overlay {
        padding: 16px 12px;
    }
    
    .gallery-overlay h4 {
        font-size: 0.875rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    .gallery-cta {
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-sticky {
        height: 100vh;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 120px);
        gap: 8px;
    }
    
    .gallery-panel .container {
        padding: 0 16px;
    }
}

/* Text Primary Color */
.text-primary {
    color: var(--primary-color);
    font-size: 25px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.25rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works - Timeline Design */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-white);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    width: calc(50% - 40px);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item.timeline-right .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(186, 68, 242, 0.2);
    border-color: var(--primary-color);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--bg-white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -50px;
}

.timeline-year {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(186, 68, 242, 0.3);
    z-index: 4;
}

.timeline-item:nth-child(odd) .timeline-year {
    left: -25px;
}

.timeline-item:nth-child(even) .timeline-year {
    right: -25px;
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 8px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-image {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.timeline-icon {
    position: absolute;
    top: 20px;
    font-size: 1.5rem;
    z-index: 5;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: 20px;
}

/* Timeline animations */
.timeline-item.animate-in .timeline-content {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design for Timeline - Medium/Small Laptops */
@media (max-width: 1366px) {
    .how-it-works {
        padding: 100px 0;
    }
    
    .timeline-container {
        padding: 30px 20px;
        max-width: 1100px;
    }
    
    .timeline-content {
        width: calc(50% - 50px);
        padding: 35px 30px;
        opacity: 1;
        transform: translateX(0);
    }
    
    .timeline-item {
        margin-bottom: 50px;
    }
    
    .timeline-content::before {
        width: 18px;
        height: 18px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -45px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -45px;
    }
}

@media (max-width: 1200px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .timeline-container {
        padding: 25px 15px;
        max-width: 1000px;
    }
    
    .timeline-content {
        width: calc(50% - 60px);
        padding: 30px 25px;
        opacity: 1;
        transform: translateX(0);
    }
    
    .timeline-item {
        margin-bottom: 45px;
    }
    
    .timeline-content::before {
        width: 16px;
        height: 16px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -40px;
    }
}

@media (max-width: 1024px) {
    .how-it-works {
        padding: 70px 0;
    }
    
    .timeline-container {
        padding: 20px 10px;
        max-width: 950px;
    }
    
    .timeline-content {
        width: calc(50% - 70px);
        padding: 25px 20px;
        opacity: 1;
        transform: translateX(0);
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-content::before {
        width: 14px;
        height: 14px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -35px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -35px;
    }
}

/* Responsive Design for Timeline */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .timeline-container {
        padding: 30px 15px;
        max-width: 100%;
    }
    
    .timeline-line {
        left: 25px;
        width: 3px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 50px !important;
        margin-right: 0 !important;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .timeline-content::before {
        left: -40px !important;
        right: auto !important;
        width: 12px;
        height: 12px;
    }
    
    .timeline-year {
        left: -25px !important;
        right: auto !important;
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        z-index: 10;
        position: absolute;
    }
    
    .timeline-content {
        width: calc(100% - 40px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        padding: 25px 20px 25px 30px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .timeline-icon {
        right: 20px !important;
        left: auto !important;
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        padding-right: 40px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .timeline-image {
        margin-top: 15px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .timeline-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 40px 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .timeline-container {
        padding: 20px 10px;
    }
    
    .timeline-line {
        left: 20px;
        width: 2px;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 40px !important;
        margin-right: 0 !important;
        padding: 20px 15px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 25px;
    }
    
    .timeline-content::before {
        left: -35px !important;
        right: auto !important;
        width: 10px;
        height: 10px;
    }
    
    .timeline-year {
        left: -30px !important;
        right: auto !important;
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 10;
        position: absolute;
    }
    
    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 50px !important;
        margin-right: 0 !important;
        padding: 20px 15px 20px 25px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 25px;
    }
    
    .timeline-icon {
        right: 15px !important;
        left: auto !important;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        padding-right: 30px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .timeline-image {
        margin-top: 12px;
        border-radius: 6px;
    }
    
    .timeline-image img {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }
}

/* Final Call to Action - Modern Design */
.final-cta {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

/* Animated Particles - Removed to match footer */

.final-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190, 63, 254, 0.2);
    border: 1px solid rgba(190, 63, 254, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(190, 63, 254, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(190, 63, 254, 0); }
}

.badge-text {
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animated Title */
.cta-title {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #000000;
}

.title-line {
    display: block;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line.highlight {
    background: #BE3FFE;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.cta-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgency-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(190, 63, 254, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(190, 63, 254, 0.15);
    border-color: rgba(190, 63, 254, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.125rem;
    color: #BE3FFE;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #BE3FFE;
    color: #000000;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(190, 63, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(190, 63, 254, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: transparent;
    color: #000000;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #000000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(190, 63, 254, 0.1);
    border-color: rgba(190, 63, 254, 0.5);
    transform: translateY(-3px);
}

.btn-play {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(190, 63, 254, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover .btn-play {
    background: rgba(190, 63, 254, 0.5);
}

/* Trust Section */
.cta-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    margin-left: -12px;
    transition: all 0.3s ease;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-avatars:hover img {
    margin-left: 4px;
}

.trust-avatars:hover img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ba44f2 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid #ffffff;
    margin-left: -12px;
}

.trust-text {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9375rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0 100px;
    }
    
    .cta-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-features {
        gap: 16px;
    }
    
    .cta-feature {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-badge {
        padding: 6px 16px;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-call {
    background: #000;
    border: 2px solid #fff;
}

.floating-whatsapp {
    background: #fff;
    border: 2px solid #000;
}

.floating-call svg {
    color: #fff;
}

.floating-whatsapp svg {
    color: #000;
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-cta {
        right: 16px;
        bottom: 80px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Services Page Styles */
.services-hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1920&h=600&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-title {
    color: var(--text-light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.375rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid Section */
.services-grid-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-number {
    background: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transform: translateY(-20px);
    transition: var(--transition-base);
}

.service-card:hover .service-number {
    transform: translateY(0);
}

.service-card-content {
    padding: 32px;
}

.service-card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-card-features li {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
    transition: var(--transition-fast);
}

.service-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.service-card:hover .service-card-features li {
    color: var(--text-dark);
    transform: translateX(4px);
}

.service-card-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-quote-btn,
.service-upload-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.service-quote-btn {
    background: var(--primary-color);
    color: var(--text-light);
}

.service-quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 68, 242, 0.3);
}

.service-upload-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-upload-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Service card animations on scroll */
.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Service Grid */
@media (max-width: 768px) {
    .services-grid-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 24px;
    }
    
    .service-card-title {
        font-size: 1.375rem;
    }
    
    .service-card-ctas {
        flex-direction: column;
    }
    
    .service-quote-btn,
    .service-upload-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid-section {
        padding: 60px 0;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
    
    .service-card-description {
        font-size: 0.9375rem;
    }
}

/* Service Sections (keeping old styles for fallback) */
.service-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.service-section:nth-child(even) {
    background: var(--bg-gray);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-reverse .service-block {
    direction: rtl;
}

.service-reverse .service-content {
    direction: ltr;
}

.service-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-base);
}

.service-visual:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-base);
}

.service-visual:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
}

.service-title {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.service-features li {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-ctas {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.service-ctas .btn-primary,
.service-ctas .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
}

/* Process Overview */
.process-overview {
    padding: 120px 0;
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-gray);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.process-step .step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.process-step h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.375rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 80px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.125rem;
    }
    
    .service-section {
        padding: 80px 0;
    }
    
    .service-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-reverse .service-block {
        direction: ltr;
    }
    
    .service-visual img {
        height: 300px;
    }
    
    .service-content {
        padding: 0;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-ctas .btn-primary,
    .service-ctas .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .process-step {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-section {
        padding: 60px 0;
    }
    
    .service-visual img {
        height: 250px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-step .step-icon {
        font-size: 2.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.contact .section-title {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.375rem;
    margin-bottom: 48px;
}

.contact .btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.contact .btn-primary:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Footer - Modern Futuristic Design */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: #fff;
    padding: 100px 0 40px;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(186, 68, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Footer Particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(186, 68, 242, 0.5);
    border-radius: 50%;
    animation: float-footer-particle 20s infinite linear;
}

.footer-particles span:nth-child(1) { left: 5%; top: 10%; animation-delay: 0s; }
.footer-particles span:nth-child(2) { left: 15%; top: 40%; animation-delay: 2s; }
.footer-particles span:nth-child(3) { left: 25%; top: 70%; animation-delay: 4s; }
.footer-particles span:nth-child(4) { left: 35%; top: 20%; animation-delay: 6s; }
.footer-particles span:nth-child(5) { left: 45%; top: 60%; animation-delay: 8s; }
.footer-particles span:nth-child(6) { left: 55%; top: 30%; animation-delay: 10s; }
.footer-particles span:nth-child(7) { left: 65%; top: 80%; animation-delay: 12s; }
.footer-particles span:nth-child(8) { left: 75%; top: 15%; animation-delay: 14s; }
.footer-particles span:nth-child(9) { left: 85%; top: 50%; animation-delay: 16s; }
.footer-particles span:nth-child(10) { left: 95%; top: 25%; animation-delay: 18s; }

@keyframes float-footer-particle {
    0% {
        transform: translateY(100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    max-width: 180px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(186, 68, 242, 0.3));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(186, 68, 242, 0.3) 0%, rgba(102, 126, 234, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: rgba(186, 68, 242, 0.5);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(186, 68, 242, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 60px;
    align-items: start;
}

.footer-column {
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
   padding-left: 18px;


}

.heading-icon {
    font-size: 1rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 4px 0;
    transition: all 0.3s ease;
    position: relative;
}

.link-arrow {
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: #ba44f2;
}

.footer-link:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact-list {
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(186, 68, 242, 0.15);
    border: 1px solid rgba(186, 68, 242, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #ba44f2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(186, 68, 242, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(186, 68, 242, 0.3);
}

.address-item {
    align-items: flex-start;
}

.contact-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 240px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ba44f2, #667eea);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Tablet Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact-column {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-contact-column {
        grid-column: span 1;
    }
    
    .footer-logo {
        max-width: 140px;
    }
    
    .contact-address {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        background: transparent !important;
        border: none !important;
        outline: none !important;
    }
    
    .mobile-menu-toggle span {
        background: #ffffff !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .mobile-menu-toggle.active span {
        background: #ffffff !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(21, 22, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #000000;
        font-size: 1.1rem;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: #000000;
        background: rgba(190, 63, 254, 0.1);
        padding-left: 10px;
    }
    
    .nav-cta {
        margin-top: 20px;
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #BE3FFE, #9333EA);
        border: none;
        border-radius: 8px;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(190, 63, 254, 0.4);
    }
    
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-link:not(.nav-cta) {
        display: none;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form-card {
        padding: 24px 20px;
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 400px;
        margin: 0 auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-call {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .step {
        padding: 24px 16px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.8rem;
    }
    
    .audience-card {
        padding: 32px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        padding: 20px 16px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .step-icon {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .step h3 {
        font-size: 0.95rem;
    }
    
    .step p {
        font-size: 0.75rem;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   PRIVACY POLICY PAGE STYLES
================================ */

.privacy-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

.privacy-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.privacy-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(190, 63, 254, 0.15) 0%, 
        rgba(147, 51, 234, 0.1) 25%, 
        rgba(124, 58, 237, 0.05) 50%, 
        rgba(109, 40, 217, 0.1) 75%, 
        rgba(91, 33, 182, 0.15) 100%
    );
    animation: gradientShift 8s ease-in-out infinite;
}

.privacy-hero .hero-texture {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(190, 63, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: textureFloat 12s ease-in-out infinite;
}

.privacy-hero .hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.privacy-hero .hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(190, 63, 254, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.privacy-hero .hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.privacy-hero .hero-particles span:nth-child(2) { left: 20%; animation-delay: 2s; }
.privacy-hero .hero-particles span:nth-child(3) { left: 30%; animation-delay: 4s; }
.privacy-hero .hero-particles span:nth-child(4) { left: 40%; animation-delay: 6s; }
.privacy-hero .hero-particles span:nth-child(5) { left: 50%; animation-delay: 8s; }
.privacy-hero .hero-particles span:nth-child(6) { left: 60%; animation-delay: 10s; }
.privacy-hero .hero-particles span:nth-child(7) { left: 70%; animation-delay: 12s; }
.privacy-hero .hero-particles span:nth-child(8) { left: 80%; animation-delay: 14s; }
.privacy-hero .hero-particles span:nth-child(9) { left: 90%; animation-delay: 16s; }
.privacy-hero .hero-particles span:nth-child(10) { left: 95%; animation-delay: 18s; }

.privacy-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.privacy-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(190, 63, 254, 0.1);
    border: 1px solid rgba(190, 63, 254, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

.privacy-hero .badge-pulse {
    width: 8px;
    height: 8px;
    background: #BE3FFE;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.privacy-hero .badge-text {
    color: #BE3FFE;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.privacy-hero .hero-title {
    margin-bottom: 25px;
}

.privacy-hero .title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 10px;
    animation: slideInLeft 0.8s ease-out;
}

.privacy-hero .title-line.highlight {
    background: linear-gradient(135deg, #BE3FFE, #9333EA, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.privacy-hero .hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.4s both;
}

.privacy-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.privacy-hero .effective-date {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 0.3s both;
}

.privacy-hero .date-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-hero .date-value {
    color: #BE3FFE;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Privacy Policy Content Styles */
.policy-content {
    padding: 100px 0;
    background: #ffffff;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(190, 63, 254, 0.1);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.policy-subtitle {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.policy-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.1);
    transition: all 0.3s ease;
}

.policy-section:hover {
    box-shadow: 0 8px 30px rgba(190, 63, 254, 0.1);
    transform: translateY(-2px);
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #BE3FFE;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.section-heading .section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #BE3FFE, #9333EA);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    font-size: 1.1rem;
    animation: numberPulse 2s ease-in-out infinite;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.section-heading .section-title {
    color: #000000;
    font-weight: 700;
    flex: 1;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(190, 63, 254, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(190, 63, 254, 0.5); }
}

.section-heading::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #BE3FFE, #9333EA);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 25px;
}

.subsection-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.policy-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.policy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #BE3FFE;
    font-weight: 700;
    font-size: 1.2rem;
}

.policy-list li strong {
    color: #000000;
    font-weight: 600;
}

.contact-info {
    background: rgba(190, 63, 254, 0.05);
    border: 1px solid rgba(190, 63, 254, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #BE3FFE;
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

.policy-footer {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(190, 63, 254, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 16px;
    text-align: center;
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, rgba(190, 63, 254, 0.08), rgba(147, 51, 234, 0.05));
    border: 2px solid rgba(190, 63, 254, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(190, 63, 254, 0.1) 0%, transparent 70%);
    animation: contactShimmer 4s ease-in-out infinite;
}

.contact-section .contact-info {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(190, 63, 254, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(190, 63, 254, 0.2);
    transition: all 0.3s ease;
}

.contact-section .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(190, 63, 254, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.contact-section .contact-item:last-child {
    margin-bottom: 0;
}

.contact-section .contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(190, 63, 254, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 50%;
    animation: iconFloat 3s ease-in-out infinite;
}

.contact-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-section .contact-details strong {
    color: #BE3FFE;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-section .contact-details span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

.contact-section .contact-details a {
    color: #BE3FFE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-section .contact-details a:hover {
    color: #9333EA;
    text-decoration: underline;
}

@keyframes contactShimmer {
    0%, 100% { transform: rotate(0deg); opacity: 0.3; }
    50% { transform: rotate(180deg); opacity: 0.6; }
}

/* Service Matching Grid - Responsive Card Layout */
.service-matching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.service-match-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(190, 63, 254, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BE3FFE, #9333EA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-match-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(190, 63, 254, 0.15);
    border-color: rgba(190, 63, 254, 0.2);
}

.service-match-card:hover::before {
    opacity: 1;
}

.match-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.need-badge {
    background: linear-gradient(135deg, #BE3FFE, #9333EA);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.recommended-service {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.match-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-list li {
    position: relative;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #BE3FFE;
    font-weight: 600;
}

/* Guidance CTA */
.guidance-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(190, 63, 254, 0.1);
}

.guidance-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.guidance-btn {
    background: linear-gradient(135deg, #BE3FFE, #9333EA);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guidance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190, 63, 254, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-matching-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    
    .service-match-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .match-header {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .need-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .recommended-service {
        font-size: 18px;
    }
    
    .use-case {
        font-size: 14px;
    }
    
    .benefit-list li {
        font-size: 13px;
    }
    
    .guidance-cta {
        padding: 24px;
        margin-top: 32px;
    }
    
    .guidance-text {
        font-size: 15px;
    }
    
    .guidance-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-matching-grid {
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
    
    .service-match-card {
        padding: 20px;
    }
    
    .need-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .recommended-service {
        font-size: 16px;
    }
    
    .guidance-cta {
        padding: 20px;
    }
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .privacy-hero .title-line {
        font-size: 2.2rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Fix mobile spacing for Our 3D Printing Services section */
    .modern-services-section {
        padding: 40px 20px;
    }
    
    .modern-services-section .container {
        padding: 0;
        max-width: 100%;
    }
    
    .modern-services-grid {
        padding: 0 10px;
    }
    
    .modern-service-item {
        margin-bottom: 30px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-visual {
        border-radius: 12px 12px 0 0;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .service-trust-tags {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .trust-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .service-title {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-benefit-box {
        padding: 12px;
        border-radius: 8px;
    }
    
    .benefit-icon img {
        width: 18px;
        height: 18px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
    
    .service-features {
        margin-top: 15px;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .modern-services-section {
        padding: 30px 15px;
    }
    
    .modern-services-grid {
        padding: 0 5px;
    }
    
    .service-content {
        padding: 15px 12px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .benefit-text {
        font-size: 12px;
    }
    
    .service-features {
        margin-top: 12px;
    }
    
    .feature-item {
        font-size: 11px;
    }
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .privacy-hero .title-line {
        font-size: 2.2rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 30px 20px;
    }
    
    .section-heading {
        font-size: 1.3rem;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .section-heading .section-number {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .section-heading .section-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .policy-section {
        padding: 25px 20px;
    }
    
    .policy-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    /* Small mobile fixes for privacy page */
    @media (max-width: 480px) {
        .section-heading {
            font-size: 1.1rem;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .section-heading .section-number {
            width: 30px;
            height: 30px;
            font-size: 0.85rem;
        }
        
        .section-heading .section-title {
            font-size: 1rem;
            line-height: 1.3;
        }
        
        .policy-section {
            padding: 20px 15px;
        }
    }
}
