@font-face {
font-family: 'YekanBakhMedium';
src: url('YekanBakhMedium.woff') format('woff');
font-weight: normal;
font-style: normal;
}
:root {
--primary-color: #ff7e00;
--primary-dark: #e06c00;
--secondary-color: #2d3748;
--bg-light: #f7fafc;
--text-color: #4a5568;
--heading-color: #1a202c;
--white: #ffffff;
--border-color: #e2e8f0;
--success-color: #48bb78;
--error-color: #f56565;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'YekanBakhMedium', system-ui, -apple-system, sans-serif;
direction: rtl;
background-color: var(--bg-light);
color: var(--text-color);
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}
ul {
list-style: none;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: bold;
text-align: center;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease;
}
.btn-primary {
background-color: var(--primary-color);
color: var(--white);
}
.btn-primary:hover {
background-color: var(--primary-dark);
box-shadow: 0 4px 12px rgba(255, 126, 0, 0.3);
}
.btn-outline {
border-color: var(--primary-color);
color: var(--primary-color);
background-color: transparent;
}
.btn-outline:hover {
background-color: var(--primary-color);
color: var(--white);
}
.btn-white {
background-color: var(--white);
color: var(--primary-color);
}
.btn-white:hover {
background-color: #f0f0f0;
}
.btn-lg {
padding: 1rem 2rem;
font-size: 1.1rem;
}
.full-width {
display: block;
width: 100%;
}
.main-header {
background-color: var(--white);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}
.logo-area .brand {
display: flex;
flex-direction: column;
}
.brand-fa {
font-size: 1.5rem;
font-weight: 900;
color: var(--heading-color);
}
.brand-en {
font-size: 0.8rem;
color: #a0aec0;
letter-spacing: 0.5px;
}
.main-nav ul {
display: flex;
gap: 1.5rem;
}
.main-nav a {
color: var(--text-color);
font-weight: 500;
padding: 0.5rem;
}
.main-nav a:hover, .main-nav a.active {
color: var(--primary-color);
}
.header-actions {
display: flex;
gap: 0.5rem;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 4px;
}
.mobile-menu-btn .bar {
width: 25px;
height: 3px;
background-color: var(--secondary-color);
transition: 0.3s;
}
.hero {
background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
color: var(--white);
padding: 4rem 0;
overflow: hidden;
}
.hero-container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.hero-text {
flex: 1;
}
.hero-text h1 {
font-size: 2.5rem;
line-height: 1.3;
margin-bottom: 1.5rem;
}
.text-orange {
color: var(--primary-color);
}
.hero-sub {
font-size: 1.1rem;
color: #cbd5e0;
margin-bottom: 2rem;
}
.hero-btns {
display: flex;
gap: 1rem;
}
.hero-visual {
flex: 1;
display: flex;
justify-content: center;
}
.server-graphic {
position: relative;
width: 300px;
height: 300px;
}
.server-box {
width: 200px;
height: 60px;
background: #4a5568;
border-radius: 8px;
margin: 20px auto;
position: relative;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
border-bottom: 4px solid #2d3748;
}
.lights {
position: absolute;
left: 15px;
top: 20px;
display: flex;
gap: 5px;
}
.lights span {
width: 8px;
height: 8px;
border-radius: 50%;
background: #e53e3e;
}
.lights span:first-child { background: #48bb78; }
.lights span:nth-child(2) { background: #ecc94b; }
.section-padding {
padding: 4rem 0;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2rem;
color: var(--heading-color);
margin-bottom: 0.5rem;
}
.grid-4 {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
.feature-card {
background: var(--white);
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
}
.icon-box {
color: var(--primary-color);
margin-bottom: 1rem;
}
.feature-card h3 {
margin-bottom: 1rem;
color: var(--heading-color);
}
.cta-section {
background-color: var(--primary-color);
color: var(--white);
padding: 3rem 0;
text-align: center;
}
.cta-content h2 {
margin-bottom: 1rem;
}
.cta-actions {
margin-top: 2rem;
display: flex;
justify-content: center;
gap: 1rem;
}
.cta-actions .btn-primary {
background-color: var(--secondary-color);
}
.main-footer {
background-color: #1a202c;
color: #cbd5e0;
padding-top: 4rem;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
padding-bottom: 3rem;
border-bottom: 1px solid #2d3748;
}
.footer-col h3 {
color: var(--white);
margin-bottom: 1.5rem;
font-size: 1.2rem;
}
.footer-col ul li {
margin-bottom: 0.8rem;
}
.footer-col ul a:hover {
color: var(--primary-color);
padding-right: 5px;
}
.enamad-placeholder {
width: 120px;
height: 120px;
background: #fff;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #1a202c;
font-size: 0.8rem;
font-weight: bold;
padding: 5px;
}
.footer-bottom {
padding: 1.5rem 0;
text-align: center;
font-size: 0.9rem;
}
.page-header {
background-color: var(--white);
padding: 3rem 0;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
.page-header h1 {
color: var(--heading-color);
font-size: 2.2rem;
margin-bottom: 0.5rem;
}
.pricing-grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
align-items: stretch;
width: 100%;
}
.pricing-card {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
border: 1px solid var(--border-color);
display: flex;
flex-direction: column;
transition: transform 0.3s, box-shadow 0.3s;
height: 100%;
position: relative;
}
.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.pricing-card.popular {
border: 2px solid var(--primary-color);
box-shadow: 0 10px 25px rgba(255, 126, 0, 0.15);
z-index: 2;
transform: scale(1.05);
}
.pricing-card.popular:hover {
transform: scale(1.05) translateY(-5px);
}
.badge {
background: var(--primary-color);
color: var(--white);
text-align: center;
padding: 8px;
font-size: 0.85rem;
font-weight: bold;
}
.card-header {
padding: 2rem;
background: #fcfcfc;
border-bottom: 1px solid var(--border-color);
text-align: center;
}
.card-header h3 {
font-size: 1.3rem;
color: var(--heading-color);
margin-bottom: 1rem;
}
.price {
font-size: 1.5rem;
font-weight: 900;
color: var(--primary-color);
}
.price span {
font-size: 0.9rem;
color: var(--text-color);
font-weight: normal;
}
.card-body {
padding: 2rem;
flex: 1;
display: flex;
flex-direction: column;
}
.card-body ul {
margin-bottom: 2rem;
flex: 1;
}
.card-body ul li {
margin-bottom: 0.8rem;
border-bottom: 1px dashed var(--border-color);
padding-bottom: 0.5rem;
font-size: 0.95rem;
color: var(--text-color);
}
.card-body ul li:last-child {
border-bottom: none;
}
.vps-specs li {
display: flex;
justify-content: space-between;
}
.contact-grid-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 3rem;
}
.contact-form-wrapper, .info-card {
background: var(--white);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
color: var(--heading-color);
}
.form-group input, .form-group textarea, .form-group select {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--border-color);
border-radius: 8px;
font-family: inherit;
outline: none;
transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
border-color: var(--primary-color);
}
.info-card {
margin-bottom: 1.5rem;
}
.search-box-wrapper {
background: var(--white);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
text-align: center;
margin-bottom: 3rem;
}
.search-inputs {
display: flex;
gap: 1rem;
max-width: 800px;
margin: 0 auto;
}
.search-inputs input {
flex: 1;
padding: 1rem;
border: 1px solid var(--border-color);
border-radius: 8px;
}
.search-inputs select {
padding: 1rem;
border: 1px solid var(--border-color);
border-radius: 8px;
}
.table-responsive {
overflow-x: auto;
background: var(--white);
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
table {
width: 100%;
border-collapse: collapse;
}
table th, table td {
padding: 1rem;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
table th {
background-color: #f7fafc;
font-weight: bold;
}
.ltr {
direction: ltr;
}
.domain-result {
margin-top: 1.5rem;
padding: 1rem;
border-radius: 8px;
display: none;
}
.domain-result.success {
background-color: #c6f6d5;
color: #2f855a;
display: block;
}
.domain-result.error {
background-color: #fed7d7;
color: #c53030;
display: block;
}
.check-list li {
position: relative;
padding-right: 25px;
margin-bottom: 1rem;
}
.check-list li::before {
content: '✓';
position: absolute;
right: 0;
color: var(--primary-color);
font-weight: bold;
}
@media (max-width: 992px) {
.pricing-grid-3 {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.grid-4, .footer-grid {
grid-template-columns: repeat(2, 1fr);
}
.pricing-card.popular {
transform: none;
margin: 0;
z-index: 1;
}
.pricing-card.popular:hover {
transform: translateY(-5px);
}
}
@media (max-width: 768px) {
.mobile-menu-btn {
display: flex;
}
.main-nav {
display: none;
position: absolute;
top: 80px;
right: 0;
width: 100%;
background: var(--white);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
padding: 1rem;
}
.main-nav.active {
display: block;
}
.main-nav ul {
flex-direction: column;
gap: 0;
}
.main-nav a {
display: block;
padding: 0.8rem;
border-bottom: 1px solid var(--border-color);
}
.hero-container {
flex-direction: column;
text-align: center;
}
.hero-btns {
justify-content: center;
}
.grid-4, .pricing-grid-3 {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
text-align: center;
}
.enamad-placeholder {
margin: 0 auto;
}
.contact-grid-layout {
grid-template-columns: 1fr;
}
.search-inputs {
flex-direction: column;
}
}