/* CellPark Apple Ready - custom styles */

html, body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #000000;
    line-height: 1.5;
}

body {
    direction: rtl;
}

/* Header */
.cp-header {
    background: #FFFFFF;
    border-bottom: 1px solid #F2F2F2;
    position: sticky;
    top: 0;
    z-index: 100;
}

.cp-header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cp-header-logo img {
    max-height: 32px;
}

.cp-site-title {
    font-weight: 600;
    font-size: 20px;
}

.cp-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.cp-menu li {
    display: inline-block;
}

.cp-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.cp-menu a:hover {
    color: #8BCF21;
}

/* Hero */
.cp-hero {
    padding: 80px 16px 60px;
    background: #FFFFFF;
}

.cp-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.cp-hero-text {
    max-width: 520px;
}

.hero-title {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #444444;
    margin-bottom: 24px;
}

.cp-hero-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.black-btn {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s ease;
}

.black-btn:hover {
    background: #111111;
    transform: translateY(-2px);
}

.outline-btn {
    display: inline-block;
    background: #FFFFFF;
    color: #000000;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #000000;
    transition: 0.2s ease;
}

.outline-btn:hover {
    color: #8BCF21;
    border-color: #8BCF21;
}

/* Sections */
.cp-section-title {
    max-width: 1140px;
    margin: 40px auto 16px;
    padding: 0 16px;
    font-size: 24px;
    font-weight: 600;
}

.cp-why {
    padding: 0 16px 40px;
}

.cp-why-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.card {
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    transition: 0.2s ease;
}

.card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.cp-why-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Price section */
.cp-price-section {
    padding: 0 16px 40px;
}

.cp-price-section .card {
    max-width: 740px;
    margin: 0 auto;
}

/* Contact */
.cp-contact-section {
    padding: 0 16px 60px;
}

.cp-contact-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.cp-contact-details p,
.cp-contact-details a {
    font-size: 14px;
}

/* Footer */
.cp-footer {
    background: #000000;
    color: #FFFFFF;
    padding: 18px 16px;
}

.cp-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}

.cp-footer a {
    color: #8BCF21;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .cp-header-inner {
        flex-direction: row-reverse;
    }
}
