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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

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

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Critical CSS Loading */
.preload {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.preload.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce animations on slow devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    z-index: 1;
}

/* Hero Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Animated Background Particles */
.hero-bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-particles::before,
.hero-bg-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
}

.hero-bg-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-bg-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
}

/* 3D Device Showcase */
.hero-3d-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.device-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: showcaseRotate 20s infinite linear;
}

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

.device-3d {
    position: absolute;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.1);
    animation: float3d 6s ease-in-out infinite;
}

/* Phone 3D */
.phone-3d {
    width: 120px;
    height: 200px;
    top: 150px;
    left: 100px;
    animation-delay: 0s;
}

.phone-3d .device-screen {
    margin: 10px;
    height: calc(100% - 20px);
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screen-content {
    text-align: center;
    color: white;
}

.unlock-icon {
    font-size: 2rem;
    color: #27ae60;
    animation: pulse 2s infinite;
}

.success-text {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: #27ae60;
}

/* Tablet 3D */
.tablet-3d {
    width: 160px;
    height: 120px;
    top: 200px;
    right: 80px;
    animation-delay: -2s;
}

.tablet-3d .device-screen {
    margin: 8px;
    height: calc(100% - 16px);
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 0.7rem;
}

.recovery-progress {
    width: 80%;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 2px;
    animation: progressMove 3s infinite;
}

@keyframes progressMove {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 0%; }
}

/* Hard Drive 3D */
.hdd-3d {
    width: 140px;
    height: 100px;
    top: 100px;
    right: 150px;
    animation-delay: -4s;
}

.hdd-body {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(145deg, #95a5a6, #7f8c8d);
    border-radius: 10px;
}

.hdd-disk {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #34495e 30%, #2c3e50 70%);
    border-radius: 50%;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation: diskSpin 2s linear infinite;
}

.hdd-arm {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #e74c3c;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    border-radius: 1px;
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: elementFloat 8s ease-in-out infinite;
}

.el-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.el-2 {
    bottom: 100px;
    left: 200px;
    animation-delay: -2s;
}

.el-3 {
    top: 300px;
    right: 50px;
    animation-delay: -4s;
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateX(5deg) rotateY(5deg); }
    50% { transform: translateY(-5px) rotateX(-5deg) rotateY(10deg); }
    75% { transform: translateY(-15px) rotateX(10deg) rotateY(-5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 16px rgba(52, 152, 219, 0.12));
    border-radius: 18px;
    background: #f4f8ff;
    transition: transform 0.3s;
}

.service-card:hover .service-img {
    transform: scale(1.08) rotate(-3deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: #27ae60;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: white;
}

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

.review-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    position: relative;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #3498db;
    border-radius: 50%;
    animation: avatarPulse 3s infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.review-avatar i {
    font-size: 1.8rem;
    color: #3498db;
    z-index: 2;
}

.review-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(39, 174, 96, 0.3);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
    font-size: 0.85rem;
}

.review-service {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.review-date {
    color: #7f8c8d;
}

/* Add Review Form */
.add-review {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.add-review h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

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

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars i:hover,
.stars i.active {
    color: #f39c12;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

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

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form-container h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Enhanced Buttons with Animated Icons */
.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-telegram {
    background: linear-gradient(45deg, #0088cc, #005577);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.6);
}

/* Animated WhatsApp Icon */
.whatsapp-icon {
    animation: whatsappBounce 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    75% {
        transform: scale(1.15) rotate(-3deg);
    }
}

/* Animated Telegram Icon */
.telegram-icon {
    animation: telegramFly 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes telegramFly {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(3px) rotate(10deg);
    }
    50% {
        transform: translateX(-2px) rotate(-5deg);
    }
    75% {
        transform: translateX(2px) rotate(8deg);
    }
}

/* Enhanced Hero Title for Better Readability */
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    text-align: center;
}

/* Hero Subtitle */
.hero-subtitle {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Hero Content Container */
.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 2rem 0;
}

/* Button Hover Effects */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

/* WhatsApp pulse effect */
.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.floating-btn:hover::before {
    transform: scale(1.2);
}

.floating-btn i {
    position: relative;
    z-index: 2;
    animation: floatingPulse 2s ease-in-out infinite;
}

@keyframes floatingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: whatsappFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(3deg); }
    50% { transform: translateY(5px) rotate(-3deg); }
    75% { transform: translateY(-3px) rotate(2deg); }
}

/* Telegram Floating Button */
.telegram-float {
    background: linear-gradient(135deg, #0088cc, #005577);
    animation: telegramFloat 4s ease-in-out infinite;
    animation-delay: -1s;
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
}

@keyframes telegramFloat {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(3px) rotate(-2deg); }
    50% { transform: translateX(-3px) rotate(2deg); }
    75% { transform: translateX(2px) rotate(1deg); }
}

/* Facebook Floating Button */
.facebook-float {
    background: linear-gradient(135deg, #1877f2, #0d5bb8);
    animation: facebookFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

.facebook-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

@keyframes facebookFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(3px) rotate(1deg); }
    50% { transform: translateY(-3px) rotate(-1deg); }
    75% { transform: translateY(2px) rotate(0.5deg); }
}

/* Floating Buttons Scroll Animation */
.floating-contact.scrolled {
    transform: translateY(-50%) translateX(-10px);
}

/* Notification Badge for Floating Buttons */
.floating-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid white;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Mobile Responsive for Floating Buttons */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        right: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 100px 0 50px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 15px;
    }

    .hero-3d-visual {
        height: 250px;
        order: -1;
        margin-bottom: 1rem;
    }

    .device-showcase {
        animation: none;
        transform: scale(0.6);
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 220px;
        justify-content: center;
    }

    /* Services Mobile */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-visual {
        height: 80px;
        margin-bottom: 1rem;
    }

    .service-icon-3d {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Reviews Mobile */
    .reviews {
        padding: 60px 0;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container,
    .add-review {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .hero {
        padding: 90px 0 40px 0;
    }

    .hero-container {
        padding: 0 10px;
        gap: 2rem;
    }

    .hero-3d-visual {
        height: 200px;
        margin-bottom: 0.5rem;
    }

    .device-showcase {
        transform: scale(0.4);
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 200px;
    }

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

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

    .service-card,
    .contact-form-container,
    .add-review,
    .review-card {
        padding: 1.2rem;
    }

    .service-visual {
        height: 60px;
    }

    .service-icon-3d {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Mobile Overflow and Layout Fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-bg-particles {
        display: none; /* Mobilde performans için parçacık efektlerini kapat */
    }

    .nav-container {
        padding: 0 15px;
    }
}

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

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    /* 3D animasyonları mobilde durdur */
    .device-showcase {
        animation: none !important;
    }

    .device-3d {
        animation: none !important;
    }

    .floating-element {
        display: none; /* Mobilde floating elementleri gizle */
    }
}

/* Animations for scroll reveal */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

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

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

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

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

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

.faq-answer p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}
