/* CSS Variables - Design System */
:root {
    --background: hsl(220, 30%, 6%);
    --foreground: hsl(210, 40%, 98%);

    --card: hsl(220, 25%, 10%);
    --card-foreground: hsl(210, 40%, 98%);

    --popover: hsl(220, 25%, 10%);
    --popover-foreground: hsl(210, 40%, 98%);

    --primary: hsl(200, 100%, 50%);
    --primary-foreground: hsl(220, 30%, 6%);

    --secondary: hsl(195, 90%, 45%);
    --secondary-foreground: hsl(210, 40%, 98%);

    --muted: hsl(220, 20%, 20%);
    --muted-foreground: hsl(215, 20%, 65%);

    --accent: hsl(35, 100%, 55%);
    --accent-foreground: hsl(220, 30%, 6%);

    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(210, 40%, 98%);

    --border: hsl(220, 20%, 20%);
    --input: hsl(220, 20%, 20%);
    --ring: hsl(200, 100%, 50%);

    --radius: 1rem;

    --glass-bg: hsla(220, 25%, 10%, 0.7);
    --glass-border: hsla(210, 40%, 98%, 0.1);

    --gradient-primary: linear-gradient(135deg, hsl(200, 100%, 50%), hsl(220, 90%, 60%));
    --gradient-hero: linear-gradient(180deg, hsl(220, 30%, 6%), hsl(220, 35%, 12%));
    --shadow-glow: 0 0 60px hsla(200, 100%, 50%, 0.3);
    --shadow-card: 0 8px 32px hsla(220, 30%, 3%, 0.4);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-strong {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
}

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

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

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

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slide-in-left 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slide-in-right 0.6s ease-out;
}

.animate-scale-in {
    animation: scale-in 0.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: hsl(200, 100%, 45%);
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid var(--input);
    background: var(--background);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
    transform: scale(1.05);
}

.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
}

.btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.btn-full {
    width: 100%;
}

/* Form Styles */
.form-input,
.form-textarea {
    display: flex;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid var(--border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsla(200, 100%, 50%, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}

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

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

/* Section Styles */
.section {
    padding: 5rem 1rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.125rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.particle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
}

.particle-2 {
    top: 10rem;
    right: 5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--secondary);
    animation-delay: 1s;
}

.particle-3 {
    bottom: 10rem;
    left: 25%;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    animation-delay: 2s;
}

.particle-4 {
    top: 15rem;
    right: 33%;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    animation-delay: 1.5s;
}

.particle-5 {
    bottom: 5rem;
    right: 2.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--secondary);
    animation-delay: 0.5s;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-car.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            hsla(220, 30%, 6%, 0.95) 0%,
            hsla(220, 30%, 6%, 0.85) 50%,
            var(--background) 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 3s infinite;
    pointer-events: none;
}

.glow-orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsla(200, 100%, 50%, 0.1);
}

.glow-orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsla(195, 90%, 45%, 0.1);
    animation-delay: 1.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    animation: fade-in 0.6s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: block;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(200, 100%, 50%, 0.5);
    border-radius: 1.25rem;
    padding: 0.25rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 0.1875rem;
    margin: 0 auto;
    animation: pulse 1s infinite;
}

/* S
ervices Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: scale-in 0.5s ease-out;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 0 50px hsla(200, 100%, 50%, 0.4);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--card), transparent);
    transition: background 0.5s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, var(--card), hsla(200, 100%, 50%, 0.1));
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(200, 100%, 50%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: rotate(12deg) scale(1.1);
    box-shadow: 0 0 20px hsla(200, 100%, 50%, 0.5);
}

.service-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
}

/* Features Section */
.features-section {
    position: relative;
}

.features-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, hsla(200, 100%, 50%, 0.05), transparent);
}

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

.feature-card {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    animation: scale-in 0.5s ease-out;
}

.feature-card:hover {
    transform: scale(1.05) translateY(-0.5rem);
    box-shadow: 0 0 40px hsla(200, 100%, 50%, 0.3);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px hsla(200, 100%, 50%, 0.4);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 50px hsla(200, 100%, 50%, 0.6);
    transform: rotate(12deg);
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Process Section */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.process-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 3s infinite;
}

.process-orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: hsla(200, 100%, 50%, 0.2);
}

.process-orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsla(195, 90%, 45%, 0.2);
    animation-delay: 1s;
}

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

.process-step {
    position: relative;
    animation: scale-in 0.5s ease-out;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    font-size: 5rem;
    font-weight: bold;
    color: hsla(200, 100%, 50%, 0.1);
    transition: color 0.3s ease;
    z-index: 1;
}

.process-step:hover .step-number {
    color: hsla(200, 100%, 50%, 0.2);
}

.step-content {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-content {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsla(200, 100%, 50%, 0.3);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px hsla(200, 100%, 50%, 0.5);
    transition: all 0.5s ease;
}

.process-step:hover .step-icon {
    box-shadow: 0 0 50px hsla(200, 100%, 50%, 0.7);
    transform: rotate(12deg);
}

.step-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-align: center;
}

.step-description {
    color: var(--muted-foreground);
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.gallery-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s infinite;
}

.gallery-orb-1 {
    top: 5rem;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(200, 100%, 50%, 0.2);
}

.gallery-orb-2 {
    bottom: 5rem;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(35, 100%, 55%, 0.2);
    animation-delay: 2s;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 6xl;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.7s ease;
    animation: scale-in 0.5s ease-out;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 0 60px hsla(200, 100%, 50%, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.25);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 30%, 6%, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.7s ease;
    border: 4px solid transparent;
    border-radius: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    border-color: hsla(200, 100%, 50%, 0.3);
}

/* Pricing Section */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 3s infinite;
}

.pricing-orb-1 {
    top: 2.5rem;
    left: 5rem;
    width: 20rem;
    height: 20rem;
    background: hsla(200, 100%, 50%, 0.3);
}

.pricing-orb-2 {
    bottom: 2.5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: hsla(195, 90%, 45%, 0.3);
    animation-delay: 1.5s;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 6xl;
    margin: 0 auto;
}

.pricing-card {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.5s ease;
    animation: scale-in 0.5s ease-out;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px hsla(200, 100%, 50%, 0.2);
}

.pricing-featured {
    margin-top: -1rem;
    margin-bottom: 0;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px hsla(200, 100%, 50%, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: var(--gradient-primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 0 20px hsla(200, 100%, 50%, 0.5);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    color: var(--muted-foreground);
    margin-left: 0.5rem;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.pricing-features i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-note {
    text-align: center;
    color: var(--muted-foreground);
    margin-top: 3rem;
    animation: fade-in 0.6s ease-out;
}

@media (min-width: 768px) {
    .pricing-featured {
        margin-top: -1rem;
        margin-bottom: 0;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 5xl;
    margin: 0 auto;
}

.team-card {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
    animation: scale-in 0.5s ease-out;
}

.team-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 50px hsla(200, 100%, 50%, 0.4);
}

.team-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--card) 0%, hsla(220, 25%, 10%, 0.5) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.team-card:hover .team-overlay {
    background: linear-gradient(to top, hsla(220, 25%, 10%, 0.9) 0%, hsla(200, 100%, 50%, 0.1) 100%);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary);
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-experience {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Te
stimonials Section */
.testimonials-section {
    position: relative;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, hsla(195, 90%, 45%, 0.05), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 6xl;
    margin: 0 auto;
}

.testimonial-card {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: scale-in 0.5s ease-out;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star-filled {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.faq-orb {
    position: absolute;
    top: 10rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: hsla(35, 100%, 55%, 0.3);
    border-radius: 50%;
    filter: blur(3rem);
    animation: float 6s ease-in-out infinite;
}

.faq-container {
    max-width: 3xl;
    margin: 0 auto;
    animation: scale-in 0.5s ease-out;
}

.faq-item {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0 30px hsla(200, 100%, 50%, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: hsla(200, 100%, 50%, 0.05);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    padding-right: 1rem;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 6xl;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    animation: slide-in-left 0.6s ease-out;
}

.contact-form-container {
    animation: slide-in-right 0.6s ease-out;
}

.contact-card,
.contact-form-card {
    background: hsla(220, 25%, 15%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(210, 40%, 98%, 0.15);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(200, 100%, 50%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-details h4 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--muted-foreground);
}

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

/* Footer */
.footer {
    padding: 3rem 1rem;
    border-top: 1px solid hsla(220, 20%, 20%, 0.5);
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--muted-foreground);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.footer-list li {
    color: var(--muted-foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsla(220, 20%, 20%, 0.5);
    text-align: center;
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .gallery-grid,
    .pricing-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .section {
        padding: 2.5rem 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-lg {
        height: 2.5rem;
        padding: 0 1.5rem;
        font-size: 1rem;
    }

    .service-content,
    .feature-card,
    .step-content,
    .pricing-card,
    .team-content,
    .testimonial-card,
    .contact-card,
    .contact-form-card {
        padding: 1.25rem;
    }
}

/* Animation delays for staggered effects */
[data-delay="0"] {
    animation-delay: 0s;
}

[data-delay="0.1"] {
    animation-delay: 0.1s;
}

[data-delay="0.15"] {
    animation-delay: 0.15s;
}

[data-delay="0.2"] {
    animation-delay: 0.2s;
}

[data-delay="0.3"] {
    animation-delay: 0.3s;
}

[data-delay="0.4"] {
    animation-delay: 0.4s;
}

[data-delay="0.45"] {
    animation-delay: 0.45s;
}

[data-delay="0.5"] {
    animation-delay: 0.5s;
}

/* Image animations */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-animated {
    opacity: 1 !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .particles,
    .glow-orb,
    .process-bg,
    .gallery-bg,
    .pricing-bg,
    .testimonials-bg,
    .faq-bg {
        display: none;
    }

    .glass,
    .glass-strong {
        background: white;
        border: 1px solid #ccc;
    }

    .text-gradient {
        -webkit-text-fill-color: initial;
        color: #000;
    }
}

/* Team Face & Logo Styles */
.face-hidden img {
    filter: blur(25px);
    transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.face-hidden:hover img {
    filter: blur(8px);
}

.clothes-logo {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.team-image {
    position: relative;
}