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

body {
    font-family: 'Vazirmatn', 'Tahoma', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

code, pre, .code-block {
    font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace !important;
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.animate {
    opacity: 1;
}

/* Moonlight Shadow Effect */
.moonlight-shadow {
    box-shadow: 
        0 0 10px rgba(173, 216, 230, 0.15),
        0 0 20px rgba(173, 216, 230, 0.08),
        0 0 30px rgba(173, 216, 230, 0.04);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #007BFF;
    text-decoration: none;
}

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

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

.nav-link:hover {
    color: #007BFF;
    background: rgba(0, 123, 255, 0.1);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid #333;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 2rem 1rem;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.drawer-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer-menu {
    list-style: none;
    padding: 0;
}

.drawer-menu li {
    margin-bottom: 1rem;
}

.drawer-menu .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.drawer-menu .nav-link:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: translateX(10px);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.2; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #007BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #007BFF;
}

.hero-description {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 8px rgba(173, 216, 230, 0.12),
        0 0 16px rgba(173, 216, 230, 0.06),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.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%;
}

.btn-primary {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(0, 123, 255, 0.1);
    color: #ffffff;
    border: 2px solid #007BFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: #007BFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Products Section */
.products {
    background: #111111;
}

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

.product-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.27s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(173, 216, 230, 0.1),
        0 0 24px rgba(173, 216, 230, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007BFF 0%, #0056b3 100%);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.33s ease;
    opacity: 0;
}

.product-card:hover::after {
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 123, 255, 0.25), 
        0 0 0 1px rgba(0, 123, 255, 0.1),
        0 0 40px rgba(173, 216, 230, 0.3);
    border-color: #007BFF;
    background: linear-gradient(135deg, #1f1f2e 0%, #2a2a3a 100%);
}

.product-number {
    width: 50px;
    height: 4px;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
    position: relative;
}

.product-number::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 1px;
}

.product-number::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 1px;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #007BFF;
}

.product-description {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    padding: 0.8rem 1.5rem;
    border: 2px solid #007BFF;
    border-radius: 25px;
    background: rgba(0, 123, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

.product-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%) !important;
    border-color: #007BFF !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4) !important;
}

.product-link::after {
    content: '←';
    transition: transform 0.2s ease;
    font-size: 1.2rem;
    pointer-events: none;
}

.product-link:hover::after {
    transform: translateX(-5px) scale(1.2) !important;
    animation: bounce 0.4s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-5px) scale(1.2) translateY(0); }
    40% { transform: translateX(-5px) scale(1.2) translateY(-3px); }
    60% { transform: translateX(-5px) scale(1.2) translateY(-1px); }
}

/* About Section */
.about {
    background: #000000;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(173, 216, 230, 0.08),
        0 0 20px rgba(173, 216, 230, 0.04);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #007BFF 0%, #0056b3 100%);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: #111111;
    text-align: center;
}

.contact-text {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-icon {
    width: 4px;
    height: 4px;
    background: #007BFF;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333;
    padding: 2rem 0;
}

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

.footer-left .logo-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #b0b0b0;
}

.footer-right p {
    color: #666;
}

/* Plans Section */
.plans-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(173, 216, 230, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(173, 216, 230, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.8;
}

.plans-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(173, 216, 230, 0.3);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 16px rgba(173, 216, 230, 0.12),
        0 0 32px rgba(173, 216, 230, 0.06),
        inset 0 1px 0 rgba(173, 216, 230, 0.1);
}

.plans-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(173, 216, 230, 0.6) 0%, 
        rgba(135, 206, 250, 0.8) 50%, 
        rgba(173, 216, 230, 0.6) 100%);
    box-shadow: 0 0 20px rgba(173, 216, 230, 0.5);
}

.plans-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(173, 216, 230, 0.03), 
        transparent);
    transform: rotate(45deg);
    animation: shimmerMoonlight 3s ease-in-out infinite;
}

@keyframes shimmerMoonlight {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.plans-highlight-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.plans-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(173, 216, 230, 0.15) 0%, 
        rgba(135, 206, 250, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ADD8E6;
    border: 2px solid rgba(173, 216, 230, 0.3);
    box-shadow: 
        0 8px 25px rgba(173, 216, 230, 0.2),
        0 0 40px rgba(173, 216, 230, 0.15),
        inset 0 2px 8px rgba(173, 216, 230, 0.1);
    position: relative;
}

.plans-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, 
        rgba(173, 216, 230, 0.2) 0%, 
        transparent 50%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.plans-icon i {
    filter: drop-shadow(0 0 12px rgba(173, 216, 230, 0.6));
}

.plans-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ADD8E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(173, 216, 230, 0.3);
}

.plans-info-text {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.plans-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.plans-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    font-size: 0.95rem;
    padding: 8px 12px;
    background: rgba(173, 216, 230, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(173, 216, 230, 0.15);
    transition: all 0.3s ease;
}

.plans-feature-item:hover {
    background: rgba(173, 216, 230, 0.1);
    border-color: rgba(173, 216, 230, 0.3);
    transform: translateX(5px);
}

.plans-feature-item i {
    color: #ADD8E6;
    font-size: 16px;
    filter: drop-shadow(0 0 6px rgba(173, 216, 230, 0.5));
}

.btn-view-plans {
    background: linear-gradient(135deg, 
        rgba(173, 216, 230, 0.2) 0%, 
        rgba(135, 206, 250, 0.15) 100%);
    color: #ADD8E6;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(173, 216, 230, 0.4);
    box-shadow: 
        0 6px 25px rgba(173, 216, 230, 0.2),
        0 0 20px rgba(173, 216, 230, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-view-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(173, 216, 230, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.btn-view-plans:hover::before {
    left: 100%;
}

.btn-view-plans:hover {
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(173, 216, 230, 0.35) 0%, 
        rgba(135, 206, 250, 0.25) 100%);
    border-color: rgba(173, 216, 230, 0.7);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(173, 216, 230, 0.4),
        0 0 40px rgba(173, 216, 230, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-view-plans i {
    filter: drop-shadow(0 0 8px rgba(173, 216, 230, 0.6));
}

@media (max-width: 1024px) {
    .plans-highlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plans-icon {
        margin: 0 auto;
    }

    .plans-features-grid {
        grid-template-columns: 1fr;
    }

    .btn-view-plans {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plans-highlight {
        padding: 2rem 1.5rem;
    }

    .plans-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .plans-info-title {
        font-size: 1.5rem;
    }

    .plans-features-grid {
        gap: 0.75rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Additional Enhancements */
.product-card {
    cursor: pointer;
}

.product-card .product-title {
    transition: all 0.2s ease;
}

.product-card:hover .product-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.product-card .product-description {
    transition: all 0.2s ease;
}

.product-card:hover .product-description {
    color: #e0e0e0;
}

.product-number {
    transition: all 0.2s ease;
}

.product-card:hover .product-number {
    background: linear-gradient(135deg, #ffffff 0%, #007BFF 100%);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

/* Loading animation for smooth transitions */
.page-transition {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-transition.loaded {
    opacity: 1;
}

/* Enhanced button effects */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn:active::after {
    width: 200px;
    height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}/* test update 1763714146 */
/* بروزرسانی Fri Nov 21 08:36:54 AM UTC 2025 */
/