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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Particles */
.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.8) 0%, rgba(64, 224, 255, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: floatUp 15s infinite linear;
}

.particle:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.particle:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 40%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-delay: 12s;
    animation-duration: 15s;
}

.particle:nth-child(8) {
    width: 35px;
    height: 35px;
    left: 80%;
    animation-delay: 14s;
    animation-duration: 19s;
}

.particle:nth-child(9) {
    width: 65px;
    height: 65px;
    left: 90%;
    animation-delay: 16s;
    animation-duration: 11s;
}

.particle:nth-child(10) {
    width: 45px;
    height: 45px;
    left: 15%;
    animation-delay: 18s;
    animation-duration: 20s;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border: 2px solid rgba(64, 224, 255, 0.3);
    background: rgba(64, 224, 255, 0.05);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    border-radius: 0;
    animation: rotateShape 40s infinite linear;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    border-radius: 50%;
    animation: rotateShape 35s infinite linear reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 80%;
    border-radius: 0;
    transform: rotate(45deg);
    animation: rotateShape 45s infinite linear;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 30%;
    border-radius: 30px;
    animation: rotateShape 30s infinite linear reverse;
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.4) 0%, rgba(64, 224, 255, 0.1) 40%, transparent 70%);
    animation: pulse 8s infinite ease-in-out;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 255, 0.1), transparent);
    animation: waveMove 20s infinite linear;
}

.wave:nth-child(1) {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave:nth-child(2) {
    animation-delay: 5s;
    opacity: 0.5;
}

.wave:nth-child(3) {
    animation-delay: 10s;
    opacity: 0.3;
}

/* Keyframe Animations */
@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

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

@keyframes waveMove {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Glassmorphism Base */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(64, 224, 255, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text h2 {
    color: #40e0ff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.slogan {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #40e0ff;
    background: rgba(64, 224, 255, 0.1);
}

.login-btn {
    background: linear-gradient(135deg, #40e0ff, #0066cc);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #40e0ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sections */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
}

.section.active {
    display: block;
}

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

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    text-align: center;
    gap: 3rem;
}

.hero-content {
    max-width: 800px;
}

.hero-card {
    padding: 3rem;
    text-align: center;
}

.hero-card h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #40e0ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #40e0ff;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #40e0ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #40e0ff, #0066cc);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 224, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #40e0ff;
    border: 2px solid #40e0ff;
}

.btn-secondary:hover {
    background: #40e0ff;
    color: #0f0f23;
    transform: translateY(-3px);
}

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

.stat-card {
    padding: 2rem;
    text-align: center;
    min-width: 150px;
}

.stat-card i {
    font-size: 2.5rem;
    color: #40e0ff;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #40e0ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Product Filters */
.filter-container {
    padding: 2rem;
    margin-bottom: 2rem;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-select,
.search-input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #hhhh;
    font-size: 1rem;
    min-width: 150px;
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.search-input {
    min-width: 250px;
}

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

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-logo {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 20px;
    object-fit: contain;
    opacity: 0.8;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.brand {
    color: #40e0ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #40e0ff;
    margin-bottom: 1rem;
}

.specs {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Detailed Specifications */
.specs-detailed {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.spec-item {
    margin-bottom: 0.4rem;
    line-height: 1.3;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: #40e0ff;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2rem;
    text-align: left;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #40e0ff, #0066cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #40e0ff;
    font-weight: bold;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-card {
    padding: 2rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #40e0ff;
    margin-bottom: 1rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: #40e0ff;
    width: 30px;
}

.feature h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    color: #40e0ff;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-card {
    padding: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #40e0ff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #40e0ff;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Forms */
.contact-form,
.login-form {
    padding: 2rem;
}

.contact-form h3,
.login-form h2 {
    color: #40e0ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

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

/* Login Section */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.login-card {
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.login-form .form-group {
    position: relative;
}

.login-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #40e0ff;
}

.login-form .form-group input {
    padding-left: 3rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.forgot-password {
    color: #40e0ff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn-submit {
    width: 100%;
    margin-bottom: 2rem;
}

.login-divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.login-divider span {
    background: #1a1a2e;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-social.google:hover {
    border-color: #db4437;
}

.btn-social.facebook:hover {
    border-color: #4267b2;
}

.signup-link {
    color: rgba(255, 255, 255, 0.7);
}

.signup-link a {
    color: #40e0ff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 5rem 0;
    margin-top: 3rem;
}

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

.review-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(64, 224, 255, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #40e0ff;
}

.customer-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.customer-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
}

.review-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: #40e0ff;
    position: absolute;
    left: -1rem;
    top: -1rem;
    opacity: 0.3;
}

.review-product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #40e0ff;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-product i {
    font-size: 1rem;
}

/* Review Statistics */
.review-stats {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.stat-summary {
    padding: 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.overall-rating {
    text-align: center;
    min-width: 150px;
}

.overall-rating h3 {
    font-size: 3rem;
    color: #40e0ff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.overall-rating p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.review-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    color: rgba(255, 255, 255, 0.8);
    min-width: 60px;
}

.rating-bar span:last-child {
    color: #40e0ff;
    min-width: 35px;
    text-align: right;
    font-weight: 600;
}

.bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #40e0ff, #0066cc);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo h3 {
    color: #40e0ff;
    font-size: 1.2rem;
    margin: 0;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #40e0ff;
}

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

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

.social-links a:hover {
    background: #40e0ff;
    color: #0f0f23;
    transform: translateY(-2px);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #40e0ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-card h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select,
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-summary {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .review-breakdown {
        width: 100%;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-card {
        padding: 2rem 1rem;
    }
    
    .hero-card h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-card,
    .service-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .stat-item i {
        font-size: 2rem;
        color: #40e0ff;
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    
    .stat-item p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}

.notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #40e0ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0066cc;
}