﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #457ed5;
    --secondary-color: #414c62;
    --dark-color: #07100b;
    --light-color: #ffffff;
    --glass-bg: rgba(65, 76, 98, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Glass Effect */
.glass-effect {
    background: rgba(65, 76, 98, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(7, 16, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--light-color);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
}

.logo img {
    width: 60px;
    height: 60px;
}

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

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

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

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 126, 213, 0.2), rgba(7, 16, 11, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 3rem;
    margin: 2rem auto;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #3a6bc2;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

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

.btn-light {
    background: var(--light-color);
    color: var(--dark-color);
}

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

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-color);
}

.feature-item svg {
    color: var(--primary-color);
}

.feature-item span {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex: 1;
    padding: 2rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.about-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-item h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
}

.external-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #3a6bc2;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-color) 0%, rgba(65, 76, 98, 0.1) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    opacity: 0.8;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: clamp(0.95rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #3a6bc2;
}

/* Emergency Service */
.emergency-service {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.emergency-content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.emergency-icon {
    margin-bottom: 2rem;
}

.emergency-icon svg {
    color: var(--light-color);
}

.emergency-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.emergency-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Shop Section */
.shop {
    padding: 6rem 0;
}

.shop-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1rem;
}

.product-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.product-price {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(65, 76, 98, 0.05) 0%, var(--dark-color) 100%);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
}

.faq-item h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: clamp(0.95rem, 2vw, 1rem);
    opacity: 0.9;
    line-height: 1.7;
}

/* Articles Section */
.articles {
    padding: 6rem 0;
}

.articles-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-card {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-date {
    display: block;
    color: var(--primary-color);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-bottom: 0.5rem;
}

.article-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1rem;
}

.article-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.7;
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.article-link:hover {
    color: #3a6bc2;
}

/* Footer */
.footer {
    background: rgba(7, 16, 11, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

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

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--light-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(7, 16, 11, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-grid {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        justify-content: space-around;
    }

    .services-grid,
    .shop-grid,
    .articles-grid, .hero {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

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

    .hero-content {
        padding: 2rem;
    }

    .about,
    .services,
    .shop,
    .faq,
    .articles {
        padding: 4rem 0;
    }
}