/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFFFFF;
    --primary-dark: #1a1a1a;
    --secondary-color: #FFFFFF;
    --text-dark: #ffffff;
    --text-light: #a0aec0;
    --text-secondary: #9CA3AF;
    --bg-dark: #07090E;
    --bg-darker: #0C0E13;
    --bg-light: #1a1d24;
    --bg-white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 0.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 35px;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 0.5rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background-color: transparent;
    border: 2px solid transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 
                 -1px -1px 2px rgba(255, 255, 255, 0.1);
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.15),
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 
                 -1px -1px 3px rgba(255, 255, 255, 0.2);
}

.nav-menu li:first-child a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.15),
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 
                 -1px -1px 2px rgba(255, 255, 255, 0.1);
}
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 
                 -1px -1px 2px rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.3),
                inset -2px -2px 5px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

.hamburger svg {
    color: white;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5))
            drop-shadow(-1px -1px 1px rgba(255, 255, 255, 0.2));
}

.hamburger:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 3px 3px 7px rgba(255, 255, 255, 0.35),
                inset -3px -3px 7px rgba(0, 0, 0, 0.35),
                0 6px 16px rgba(0, 0, 0, 0.5);
}

.hamburger:hover svg {
    transform: scale(1.15) rotate(15deg);
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6))
            drop-shadow(-1px -1px 2px rgba(255, 255, 255, 0.3));
}

.hamburger:active {
    transform: scale(0.95);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18));
    box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.4),
                inset -3px -3px 8px rgba(255, 255, 255, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.3);
}

.hamburger.active svg {
    transform: rotate(180deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.nav-contact-btn {
    display: block;
    padding: 0.5rem 1.5rem;
    background: #FFFFFF !important;
    color: #000000 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.8),
                inset -2px -2px 5px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.15);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5),
                 -1px -1px 1px rgba(0, 0, 0, 0.1);
    border: none;
    margin-left: 1rem;
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    background: #F5F5F5 !important;
    box-shadow: inset 3px 3px 7px rgba(255, 255, 255, 0.9),
                inset -3px -3px 7px rgba(0, 0, 0, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .nav-contact-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--bg-dark);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gNDAgMCBMIDAgMCAwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 15%, rgba(255, 255, 255, 0.05) 35%, transparent 55%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.06) 35%, transparent 55%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse-reverse 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .container::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.18) 15%, rgba(255, 255, 255, 0.08) 35%, transparent 55%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.8;
    }
}

@keyframes glow-pulse-reverse {
    0%, 100% {
        transform: scale(1) translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15) translateX(20px);
        opacity: 0.7;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-new {
    background: white;
    color: var(--bg-dark);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 700;
}

.badge-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 400;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(105.45deg, #FFFFFF -21.34%, #FFFFFF 48.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
        letter-spacing: -0.05em;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #FFFFFF;
    color: #000000;
    border: none;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.8),
                inset -2px -2px 5px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.15);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5),
                 -1px -1px 1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #F5F5F5;
    box-shadow: inset 3px 3px 7px rgba(255, 255, 255, 0.9),
                inset -3px -3px 7px rgba(0, 0, 0, 0.25),
                0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: #000000;
    color: white;
    border: none;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.1),
                inset -2px -2px 5px rgba(0, 0, 0, 0.7),
                0 4px 12px rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8),
                 -1px -1px 1px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: #0a0a0a;
    box-shadow: inset 3px 3px 7px rgba(255, 255, 255, 0.15),
                inset -3px -3px 7px rgba(0, 0, 0, 0.8),
                0 6px 16px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9),
                 -1px -1px 2px rgba(255, 255, 255, 0.15);
}

.btn-secondary svg {
    transition: var(--transition);
}

.btn-secondary:hover svg {
    transform: translateX(3px);
}

.hero-image {
    animation: fadeInRight 1s ease, floatSwing 6s ease-in-out infinite;
    position: relative;
    transform: scale(0.8);
}

.hero-rings {
    width: 100%;
    height: auto;
}

.hero-rings img {
    width: 100%;
    height: auto;
}

@keyframes rotateRings {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatSwing {
    0%, 100% {
        transform: scale(0.8) translateY(0px) rotate(0deg);
    }
    25% {
        transform: scale(0.8) translateY(-15px) rotate(2deg);
    }
    50% {
        transform: scale(0.8) translateY(-25px) rotate(0deg);
    }
    75% {
        transform: scale(0.8) translateY(-15px) rotate(-2deg);
    }
}

.animate-float {
    /* animation removed - static image */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Logo Marquee */
.logo-marquee {
    margin-top: 4rem;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1c1c1c 50%, #101010 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 1rem 0;
    background: linear-gradient(105.45deg, #FFFFFF -21.34%, #FFFFFF 48.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
        letter-spacing: -0.04em;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover .service-icon svg {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: #FFFFFF;
    stroke: #FFFFFF;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.2) 0%, rgba(50, 205, 50, 0.12) 25%, transparent 70%);
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b0b0b 0%, #1b1b1b 50%, #0f0f0f 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    font-size: 0.875rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 1rem;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 400;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 400;
}

.faq-toggle {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e0e0e 0%, #1e1e1e 50%, #131313 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-item span {
    color: var(--text-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #080808 0%, #181818 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* Telegram Contact Button */
.telegram-contact {
    margin-top: 1.5rem;
    text-align: center;
}

.divider-text {
    display: none;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3),
                inset 2px 2px 5px rgba(255, 255, 255, 0.3),
                inset -2px -2px 5px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-telegram svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4),
                inset 2px 2px 5px rgba(255, 255, 255, 0.4),
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.btn-telegram:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(34, 158, 217, 0.3),
                inset 2px 2px 5px rgba(0, 0, 0, 0.2),
                inset -2px -2px 5px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Fade Animation Styles */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible,
.fade-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth animations for all devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize for touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .service-card,
    .feature-card,
    .nav-menu li a {
        transition-duration: 0.2s;
    }
}

/* GPU acceleration for smoother animations */
.fade-up,
.fade-down,
.service-card,
.feature-card,
.btn,
.hero-image {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.1rem 0;
    }

    .nav-wrapper {
        position: relative;
        min-height: auto;
    }

    .logo {
        z-index: 1002;
        display: flex;
        align-items: center;
    }

    .logo img {
        width: auto !important;
        height: 60px !important;
        max-width: 80px;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background: rgba(7, 9, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        padding: 2rem 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .hamburger.active {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.22));
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.45),
                    inset -4px -4px 10px rgba(255, 255, 255, 0.3),
                    0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .hamburger.active svg {
        transform: rotate(180deg) scale(1.1);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services,
    .why-choose,
    .testimonials,
    .faq,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 968px) and (orientation: landscape) {
    .navbar {
        padding: 0.1rem 0;
    }

    .nav-wrapper {
        min-height: auto;
    }

    .logo img {
        width: auto !important;
        height: 45px !important;
        max-width: 60px;
    }

    .hamburger {
        padding: 8px;
        gap: 5px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    .nav-menu {
        top: 58px;
    }

    .nav-menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1.5rem 0;
    }
    
    .hero-image {
        display: none;
    }
}

/* Hide hero image on all mobile devices */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}
