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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: radial-gradient(ellipse at center, #0a0d1a 0%, #000000 70%);
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
}

/* Accessibility Toolbar */
#accessibility-toolbar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(62, 0, 255, 0.9), rgba(94, 23, 235, 0.9));
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: 9999;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(62, 0, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

#accessibility-toolbar.collapsed {
    width: 48px;
}

#accessibility-toolbar.expanded {
    width: auto;
    padding: 8px;
}

#accessibility-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
}

#accessibility-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

#accessibility-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

#accessibility-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 0;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    overflow: hidden;
}

#accessibility-toolbar.expanded #accessibility-controls {
    width: auto;
    height: auto;
    opacity: 1;
    padding-top: 8px;
}

#accessibility-toolbar button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 500;
}

#accessibility-toolbar button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#accessibility-toolbar button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

#accessibility-toolbar button i {
    font-size: 1rem;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3e00ff, #5e17eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(62, 0, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #5e17eb, #7b2cbf);
    box-shadow: 0 6px 25px rgba(62, 0, 255, 0.4);
    transform: translateY(-2px);
}

.back-to-top-btn:active {
    transform: translateY(0);
}

.back-to-top-btn i {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Confetti for celebration */
.confetti {
    position: fixed;
    width: 10px;
    height: 20px;
    background-color: #f00;
    z-index: 10000;
    will-change: transform, opacity;
}

/* Additional confetti styles for more variety */
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #ffd300;
    top: 0;
    opacity: 0;
    animation: confetti-fall 3s ease-in-out infinite;
}

.confetti-piece:nth-child(2n) {
    background: #00e6e6;
}

.confetti-piece:nth-child(3n) {
    background: #ff6c00;
}

.confetti-piece:nth-child(4n) {
    background: #9d00ff;
}

.confetti-piece:nth-child(5n) {
    background: #ff0099;
}

@keyframes confetti-fall {
    0% {
    top: -10%;
    transform: translateX(0) rotateX(0) rotateY(0);
    opacity: 1;
    }
    100% {
    top: 100%;
    transform: translateX(20px) rotateX(360deg) rotateY(360deg);
    opacity: 0;
    }
}

/* Accessibility Classes */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast main section,
.high-contrast .hero-form-container,
.high-contrast .process-step,
.high-contrast .benefits-box,
.high-contrast .card,
.high-contrast .quote,
.high-contrast .faq-item {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

.high-contrast .hero-section {
    background: #000 !important;
}

.high-contrast .hero-background {
    background: #000 !important;
}

.high-contrast h1, 
.high-contrast h2, 
.high-contrast h3, 
.high-contrast h4,
.high-contrast label,
.high-contrast p,
.high-contrast li,
.high-contrast .stat-number,
.high-contrast .stat-label {
    color: #fff !important;
}

.high-contrast a {
    color: #fcff3c !important;
}

.high-contrast img {
    filter: grayscale(100%) contrast(150%);
}

.high-contrast button[type="submit"],
.high-contrast .quick-contact-form button {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}

.high-contrast input,
.high-contrast textarea {
    background-color: #222 !important;
    color: #fff !important;
    border-color: #444 !important;
}

.high-contrast input::placeholder,
.high-contrast textarea::placeholder {
    color: #aaa !important;
}

.font-size-large {
    font-size: 110% !important;
}

.font-size-larger {
    font-size: 125% !important;
}

.font-size-largest {
    font-size: 150% !important;
}

/* Spectacular Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #0a0d1a 0%, #000000 70%);
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.aurora-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg at 30% 20%, 
            transparent 0deg, 
            rgba(59, 130, 246, 0.3) 60deg,
            rgba(147, 51, 234, 0.2) 120deg,
            rgba(16, 185, 129, 0.2) 180deg,
            transparent 240deg),
        conic-gradient(from 180deg at 70% 70%, 
            transparent 0deg, 
            rgba(249, 115, 22, 0.2) 60deg,
            rgba(239, 68, 68, 0.3) 120deg,
            rgba(168, 85, 247, 0.2) 180deg,
            transparent 240deg);
    filter: blur(60px);
    animation: aurora-dance 15s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes aurora-dance {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.1) rotate(5deg); }
    66% { transform: scale(0.9) rotate(-3deg); }
}

.cosmic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(147, 51, 234, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(16, 185, 129, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(249, 115, 22, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(239, 68, 68, 0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: cosmic-float 20s linear infinite;
}

@keyframes cosmic-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 10;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 20px;
    padding: 4px;
    margin-left: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo-wrapper:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 40px rgba(59, 130, 246, 0.2);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.02);
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(6, 182, 212, 0.1) 100%
    );
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(20px);
    transform: scale(1.2);
}

.logo-wrapper:hover .logo-glow {
    opacity: 0.6;
    transform: scale(1.3);
    filter: blur(25px);
}

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

.brand-name {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-right: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.hero-content-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1600px;
    margin: 80px auto 0;
    z-index: 5;
    gap: 80px;
    padding-bottom: 120px;
}

.hero-content {
    width: 65%;
}

.hero-badge-container {
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 12px 48px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 50px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.title-main {
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #3b82f6;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero-subtitle em {
    color: #10b981;
    font-style: normal;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.subtitle-accent {
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.metric-icon {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 50%, #10b981 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font-family: 'Assistant', sans-serif;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    text-transform: none;
}

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

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3b82f6, #9333ea, #10b981);
    border-radius: 18px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.7;
    animation: btn-glow-pulse 2s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-family: 'Assistant', sans-serif;
    backdrop-filter: blur(10px);
    min-width: 200px;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.hero-social-proof {
    margin-top: 40px;
}

.proof-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.proof-text strong {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator i {
    color: #10b981;
}

.hero-form-container {
    width: 30%;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1)),
        rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 25px;
    z-index: -1;
    animation: form-border-rotate 8s linear infinite;
}

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

.form-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding-bottom: 25px;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: badge-bounce 2s ease-in-out infinite;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-badge:hover {
    background: linear-gradient(135deg, #dc2626, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    color: white;
    text-decoration: none;
    animation-play-state: paused;
}

.form-badge:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

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

.form-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.5;
}

.quick-form-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.quick-contact-form .form-group {
    margin-bottom: 25px;
}

.quick-contact-form input {
    width: 100%;
    padding: 18px 22px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    font-family: 'Assistant', sans-serif;
}

.quick-contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quick-contact-form input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.2),
        0 10px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.quick-contact-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 20px;
    font-family: 'Assistant', sans-serif;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.quick-contact-form button:hover::before {
    left: 100%;
}

.quick-contact-form button:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Quick Contact Form Error Styles */
.quick-contact-form .form-group.error input {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}

.quick-contact-form .error-message {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
}

.form-group.error .error-message {
  display: block;
}

.form-or-separator {
    position: relative;
    text-align: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.form-or-separator::before,
.form-or-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.form-or-separator::before {
    left: 0;
}

.form-or-separator::after {
    right: 0;
}

/* WhatsApp Button Full Width */
.whatsapp-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
}

/* Responsive Design for Hero Section */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        padding: 20px;
        margin-top: 30px;
        gap: 40px;
    }
    
    .hero-content,
    .hero-form-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        text-align: center;
    }
    
    .hero-metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .proof-text {
        text-align: center;
    }
    
    .navbar ul {
        display: none;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .logo-wrapper {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge-container {
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .metric-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-form-container {
        padding: 35px 25px;
    }
    
    .quick-form-title {
        font-size: 1.6rem;
    }
    
    .navbar {
        padding: 20px 5%;
        flex-direction: column;
        gap: 20px;
    }
    
    .navbar ul {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .brand-name {
        font-size: 1.6rem;
        margin-right: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content-wrapper {
        margin-top: 30px;
        padding: 15px;
    }
    
    .hero-form-container {
        padding: 25px 20px;
    }
    
    .btn-primary {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .btn-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .navbar ul li a {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Spectacular Hero Section */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-form-container {
        width: 35%;
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        padding: 20px;
        margin-top: 50px;
        gap: 50px;
        align-items: center;
        padding-bottom: 40px;
    }
    
    .hero-content,
    .hero-form-container {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .hero-metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .proof-text {
        text-align: center;
    }
    
    .navbar ul {
        display: none;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .logo-wrapper {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-badge-container {
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .metric-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-form-container {
        padding: 35px 25px;
    }
    
    .quick-form-title {
        font-size: 1.6rem;
    }
    
    .navbar {
        padding: 20px 5%;
        flex-direction: column;
        gap: 20px;
    }
    
    .navbar ul {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .brand-name {
        font-size: 1.6rem;
        margin-right: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content-wrapper {
        margin-top: 30px;
        padding: 15px;
        padding-bottom: 20px;
    }
    
    .hero-form-container {
        padding: 25px 20px;
    }
    
    .btn-primary {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .btn-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .navbar ul li a {
        font-size: 0.9rem;
    }
}

/* Dark Theme for All Sections - Professional & Elegant */

/* Body and Global Updates */
/* Hero Transition Section */
.hero-transition {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.9), rgba(0, 0, 0, 0.95));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.transition-content {
    position: relative;
    height: 120px;
}

.transition-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.1) 25%,
        rgba(147, 51, 234, 0.1) 50%,
        rgba(16, 185, 129, 0.1) 75%,
        transparent 100%);
    animation: transition-slide 8s linear infinite;
}

@keyframes transition-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.portfolio-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05)),
        rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.portfolio-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    height: 350px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.9) 0%,
        rgba(147, 51, 234, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    overflow-y: auto; /* Allow scrolling if content is too tall */
    z-index: 10; /* Ensure overlay is above image */
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Touch device support for mobile */
@media (hover: none) and (pointer: coarse) {
    .portfolio-overlay {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .portfolio-item:active .portfolio-overlay,
    .portfolio-item:focus .portfolio-overlay {
        opacity: 1;
    }
}

.portfolio-info {
    margin-bottom: 30px;
}

.portfolio-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.portfolio-footer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-client h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.portfolio-client p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.portfolio-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.portfolio-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 600;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Responsive for Portfolio */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .portfolio-image-container {
        height: 300px; /* Increased height for better mobile display */
    }
    
    .portfolio-overlay {
        padding: 15px;
        justify-content: flex-start; /* Align content to top for better visibility */
        padding-top: 25px; /* Add more top padding */
    }
    
    .portfolio-info {
        margin-bottom: 20px; /* Reduced margin for mobile */
    }
    
    .portfolio-title {
        font-size: 1.3rem; /* Reduced size to fit better */
        margin-bottom: 10px; /* Reduced margin */
        line-height: 1.3; /* Better line height for mobile */
    }
    
    .portfolio-description {
        font-size: 0.9rem; /* Slightly smaller for mobile */
        margin-bottom: 15px; /* Reduced margin */
        line-height: 1.4; /* Better readability */
    }
    
    .portfolio-tags {
        gap: 6px; /* Reduced gap */
        margin-bottom: 20px; /* Add margin for spacing */
    }
    
    .portfolio-tag {
        font-size: 0.8rem; /* Smaller tags for mobile */
        padding: 4px 10px; /* Reduced padding */
    }
    
    .portfolio-link {
        font-size: 0.9rem; /* Smaller text */
        padding: 10px 20px; /* Adjusted padding */
        margin-top: auto; /* Push to bottom of overlay */
    }
    
    .portfolio-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px; /* Reduced padding for mobile */
    }
    
    .portfolio-metrics {
        gap: 20px;
    }
    
    .metric-number {
        font-size: 1.5rem; /* Smaller metrics for mobile */
    }
    
    .metric-label {
        font-size: 0.8rem; /* Smaller label text */
    }
    
    .cta-text {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.process-step {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05)),
        rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    transition: all 0.4s ease;
    overflow: visible;
    will-change: transform;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(147, 51, 234, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white !important;
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Assistant', sans-serif;
    letter-spacing: 0.025em;
}

.process-step:hover .step-number {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(147, 51, 234, 0.95));
    box-shadow: 
        0 12px 25px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.15);
}

.step-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin: 20px 0 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
}

.step-time {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    color: #10b981;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-top: auto;
}

/* Benefits Box */
.benefits-box {
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1)),
        rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.benefits-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 180deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    border-radius: 25px;
    z-index: -1;
    animation: benefits-rotate 12s linear infinite;
}

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

.benefits-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.benefits-list li i {
    color: #10b981;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.benefits-footer {
    text-align: center;
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.cta-container {
    text-align: center;
}

/* Main Sections */
main {
    background: transparent;
}

/* Pricing Section */
#pricing {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(147, 51, 234, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    z-index: 1;
}

#pricing h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
    position: relative;
    z-index: 2;
}

#pricing {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.card {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(147, 51, 234, 0.08)),
        rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.original-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.sale-note {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    animation: sale-pulse 2s ease-in-out infinite;
}

@keyframes sale-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 100px;
    font-size: 1.05rem;
    flex-grow: 1;
}

.delivery-time {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: inline-block;
    margin-top: auto;
}

/* Order Form Section */
#order-form {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

#order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

#order-form h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 2;
}

#order-form-form {
    max-width: 700px;
    margin: 0 auto;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05)),
        rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 60px 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    font-family: 'Assistant', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 8px 25px rgba(59, 130, 246, 0.15) !important;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.options label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.options label:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.options input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.domain {
    margin-top: 20px;
}

.domain label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.domain input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.media-note .info-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    background: rgba(59, 130, 246, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.char-counter {
    text-align: left;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.char-counter.warning {
    color: #f59e0b;
}

.char-counter.error {
    color: #ef4444;
}

#checkout-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Assistant', sans-serif;
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

#checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

#checkout-button:hover::before {
    left: 100%;
}

#checkout-button:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 
        0 20px 45px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#guarantee {
    text-align: center;
    margin-top: 30px;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 2;
}

/* Trust Banner Section */
#trust-banner {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

#trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.trust-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-icon {
    margin-bottom: 30px;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.trust-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.trust-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.6);
    text-decoration: none;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1)),
        rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.trust-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-top: 10px;
}

/* About Section */
#about {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    z-index: 1;
}

#about h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
    position: relative;
    z-index: 2;
}

#about p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    position: relative;
    z-index: 2;
}

#about strong {
    color: #9333ea;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

#about em {
    color: #10b981;
    font-style: normal;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

/* FAQ Section */
#faq {
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.95), rgba(0, 0, 0, 0.9));
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    z-index: 1;
}

#faq h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05)),
        rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    will-change: transform;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.faq-question {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.faq-answer {
    padding: 0 30px 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(10, 13, 26, 0.95));
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 2;
}

.footer-section {
    color: #fff;
}

.footer-brand .footer-logo h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.footer-tagline {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.footer-awards {
    display: flex;
    gap: 25px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.award-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.award-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px 0;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-right: 25px;
}

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

.footer-contact h4 {
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 12px 0;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #e2e8f0;
    font-size: 1rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3b82f6;
}

.footer-legal span {
    color: #64748b;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px 40px;
        text-align: center;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Cookie Consent */
#cookie-consent {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1)),
        rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#cookie-consent p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

#cookie-consent a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

#accept-cookies {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#accept-cookies:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* CTA Button Text Animation */
.btn-text {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.btn-text-animated {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text-animated.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-text-container {
    position: relative;
    min-width: 160px;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced button hover state to pause animation */
.btn-primary:hover .btn-text-animated {
    animation-play-state: paused;
}

/* Enhanced professional animations */
.process-step,
.card,
.benefits-box,
.faq-item {
    will-change: transform;
}

/* Smooth scrolling for all anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enhanced button hover effects */
.btn-primary,
.btn-secondary,
.trust-btn,
#checkout-button,
.quick-contact-form button {
    will-change: transform, box-shadow;
}

/* Improved text contrast for better readability */
.step-description,
.card p,
.faq-answer p,
#about p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 15px;
        padding-bottom: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
      .process-step {
        padding: 25px;
        min-height: 280px;
    }    .step-number {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .hero-form-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
}

/* Professional loading states */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improved input field styling */
input:focus,
textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 8px 25px rgba(59, 130, 246, 0.15) !important;
}

/* Enhanced error states */
.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444 !important;
    box-shadow: 
        0 0 0 3px rgba(239, 68, 68, 0.1),
        0 8px 25px rgba(239, 68, 68, 0.15) !important;
}

/* Professional success animations */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-success,
.success-message {
    animation: slideInFromTop 0.6s ease-out;
}

/* Enhanced gradient overlays for depth */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, rgba(10, 13, 26, 0.8));
    z-index: 3;
    pointer-events: none;
}

/* Professional border animations */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.card:hover,
.process-step:hover,
.benefits-box:hover {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Enhanced typography hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Improved link styling */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Professional loading spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

/* Enhanced particle effects */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

@keyframes burst-animation {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: scale(0.3) translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

@keyframes confetti-shower {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Professional form exploding effect */
.form-exploding {
    animation: formExplode 0.7s ease-out;
}

@keyframes formExplode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

/* Enhanced professional containers */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* CEO Section */
.ceo-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.ceo-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ceo-image-container {
    position: relative;
    flex-shrink: 0;
    width: 320px;
    height: 400px;
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(15%) contrast(1.05) brightness(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ceo-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(6, 182, 212, 0.15) 100%
    );
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(30px);
    transform: scale(1.1);
}

.ceo-image-container:hover::before {
    opacity: 0.8;
    transform: scale(1.15);
    filter: blur(40px);
}

.ceo-image-container:hover .ceo-image {
    transform: translateY(-8px) scale(1.02);
    filter: grayscale(0%) contrast(1.15) brightness(1.05);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 80px rgba(59, 130, 246, 0.2);
}

.ceo-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

.ceo-text {
    flex: 1;
    color: #fff;
}

.ceo-text h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    text-align: right;
}

.ceo-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #94a3b8;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-align: right !important;
}

.ceo-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    margin: 0 0 30px 0;
}

.ceo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin: 0 0 25px 0;
}

.ceo-vision {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: #cbd5e1;
    background: rgba(59, 130, 246, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-right: 4px solid #3b82f6;
    margin: 0 0 35px 0;
    position: relative;
}

.ceo-vision::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.3;
    font-family: serif;
}

.ceo-values {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.value-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.value-item i {
    font-size: 1.3rem;
    color: #3b82f6;
}

.value-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ceo-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .ceo-image-container {
        width: 280px;
        height: 350px;
    }
    
    .ceo-text h3 {
        font-size: 2.2rem;
    }
    
    .ceo-values {
        flex-direction: column;
        gap: 15px;
    }
    
    .value-item {
        justify-content: center;
    }
}

/* End of file */