/* Main Design System */
:root {
    --primary-orange: #F15A22;
    --primary-orange-hover: #D84A1E;
    --dark-bg: #1D1D1B;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #EEEEEE;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Almarai', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 90, 34, 0.3);
}

.btn-secondary {
    background-color: #25D366;
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-phone {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.95rem;
}

.btn-submit {
    background-color: var(--primary-orange);
    color: var(--white);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo .d-smart-text {
    color: var(--primary-orange);
}

.logo .net-text {
    color: var(--dark-bg);
    font-weight: 400;
}

.logo .logo-ar {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a:hover {
    color: var(--primary-orange);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg);
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero.png') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    text-align: right;
}

.hero-content {
    flex: 1.2;
}

.hero-form {
    flex: 0.8;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    color: var(--text-main);
}

.hero-form h3 {
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.quick-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btns {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    border-radius: 15px;
    background-color: var(--light-bg);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Subscription Types Section */
.subscription-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.subs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.subs-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.subs-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(241, 90, 34, 0.15);
    border-color: rgba(241, 90, 34, 0.2);
}

.subs-header {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.subs-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px 2px 0 0;
}

.subs-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(241, 90, 34, 0.3));
}

.subs-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    letter-spacing: 0.5px;
}

.subs-body {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.subs-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.subs-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.subs-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f6f6f6;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subs-features li:last-child {
    border-bottom: none;
}

.subs-features li strong {
    color: var(--dark-bg);
    font-weight: 700;
}

.subs-features li span {
    color: var(--primary-orange);
    font-weight: 800;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background-color: #f1f3f5;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.offer-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.offer-card.popular {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    z-index: 10;
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-speed {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 20px 0;
}

.offer-features {
    margin: 25px 0;
    text-align: right;
}

.offer-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: 900;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.offer-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Why Us */
.why-us-section {
    padding: 80px 0;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.why-text {
    flex: 1;
}

.why-image {
    flex: 1;
    height: 400px;
    background: var(--light-bg);
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 180px;
    height: 180px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(241, 90, 34, 0.4);
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 800;
}

.trust-points {
    margin-top: 40px;
}

.trust-points li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.point-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ddd;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-success {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    padding: 80px 0 20px;
    background-color: var(--dark-bg);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-top: 10px;
}

.footer-about .logo .d-smart-text,
.footer-about .logo .net-text {
    color: var(--primary-orange);
}

.footer-about .logo span:last-child {
    color: var(--white);
    font-weight: 400;
    font-size: 1.1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-right: 5px;
}

.footer-working-hours {
    margin-top: 20px;
    background: #222;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.footer-working-hours strong {
    display: block;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone:hover {
    background: rgba(241, 90, 34, 0.1);
    transform: translateX(-5px);
}

.footer-phone .phone-label {
    display: block;
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 4px;
}

.footer-phone .phone-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.footer-whatsapp {
    display: inline-block;
    margin-top: 15px;
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.trending-searches h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.8;
}

.tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tags a {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    color: #bbb;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tags a:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(241, 90, 34, 0.3);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .main-nav {
        display: none;
    }

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

    .hero-section {
        height: 100vh;
    }

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

    .why-content,
    .contact-wrapper {
        flex-direction: column;
    }

    .offer-card.popular {
        transform: scale(1);
    }

    .header-cta {
        display: none;
    }
}