* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #FF6B6B;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1a2e;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.site-logo {
    height: 60px;
    width: auto;
    background: #1a1a2e;
    padding: 5px;
    border-radius: 8px;
    mix-blend-mode: screen;
    object-fit: contain;
    display: block;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B6B;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.95) 100%),
        url('images/vsmatt_logo_background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn {
    position: fixed;
    right: 35px;
    bottom: 100px;
    width: 55px;
    height: 55px;
    background: #FF6B6B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
    visibility: hidden;
}


#scrollTopBtn:hover {
    transform: translateY(-5px);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 107, 0.5));
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    left: 30%;
    top: 60%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 6s;
}

.floating-icon:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(5deg);
    }

    50% {
        transform: translateY(-60px) rotate(-5deg);
    }

    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.hero h1,
.hero p,
.hero .cta-button {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FF6B6B;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s 0.4s both;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 107, 107, 0.2);
    animation: slideInUp 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    border-color: #FF6B6B;
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
}

#phone1 {
    background-image: url('images/s25.png');
}

#phone2 {
    background-image: url('images/iphone.jpg');
}

#phone3 {
    background-image: url('images/mi15.jpg');
}

#watch1 {
    background-image: url('images/pre_watch.jpeg');
}

#watch2 {
    background-image: url('images/smart_watch.jpeg');
}

#watch3 {
    background-image: url('images/luxary_watch.jpeg');
}

.product-info {
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.8);
}

.product-info h3 {
    margin-bottom: 0.8rem;
    color: #FF6B6B;
    font-size: 1.3rem;
}

.product-info p {
    color: #b0b0b0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: slideInUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    border-color: #FF6B6B;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FF6B6B;
}

.service-card:nth-child(2) .service-icon {
    color: #4ECDC4;
}

.service-card:nth-child(3) .service-icon {
    color: #FFE66D;
}

.service-card:nth-child(4) .service-icon {
    color: #A8E6CF;
}

.service-card:nth-child(5) .service-icon {
    color: #FF6B6B;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #b0b0b0;
}

.about-section {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: #FF6B6B;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-text p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    background-image: url('images/vsmatt_logo_about.jpeg');
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 107, 0.3);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
    border-radius: 15px;
}

.contact-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form {
    background: rgba(26, 26, 46, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #FF6B6B;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    font-family: inherit;
    background: rgba(15, 15, 30, 0.8);
    color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.contact-form button {
    width: 100%;
    background: #FF6B6B;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    font-size: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    background: rgba(26, 26, 46, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: #4ECDC4;
}

.contact-item-icon {
    font-size: 2rem;
    color: #4ECDC4;
    min-width: 40px;
}

.contact-item h4 {
    color: #FF6B6B;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #b0b0b0;
    margin: 0;
}

.contact-item a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #FFE66D;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B6B;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #FF6B6B;
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.5);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.quick-contact {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.quick-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.quick-contact-btn.whatsapp {
    background: #25d366;
}

.quick-contact-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.quick-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 5px 30px rgba(255, 107, 107, 0.6);
    }

    100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #b0b0b0;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid rgba(255, 107, 107, 0.3);
}

.footer p {
    margin: 0.5rem 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}