:root {
    /* GÖK NET Official Branding Colors */
    --primary-blue: #184157;
    --primary-green: #238440;
    --primary-red: #E30613;
    /* Kept for specific CTAs/Urgency */
    --accent-blue: #00AEEF;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #343A40;
    --text-main: #212529;
    --text-muted: #6C757D;

    /* Design Tokens */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Outfit', 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.badge {
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: none;
    box-shadow: 0 2px 4px rgba(35, 132, 64, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-cta:hover {
    background: #1e6d35;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    /* Professional gradient using official colors */
    background: linear-gradient(135deg, #184157 0%, #238440 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--medium-gray);
    animation: slideInLeft 0.8s ease;
}

.hero-form-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.hero-form-card p {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Common Section */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Enhanced Footer */
footer {
    background: #0d2633;
    /* Darker version of primary blue */
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--primary-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-right: 5px;
}

/* SEO Keywords Tags */
.footer-keywords {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 256, 0.1);
}

.footer-keywords h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.keyword-tag:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Social Links & Hours */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

.working-hours {
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--primary-green);
}

.working-hour-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.working-hour-item:last-child {
    margin-bottom: 0;
}

.working-hour-item span:first-child {
    color: var(--primary-green);
    font-weight: 600;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--medium-gray);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
    max-height: 500px;
    border-top: 1px solid var(--medium-gray);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

/* Services and other components fixes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

/* Plan Cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border-color: var(--primary-green);
    position: relative;
    transform: scale(1.05);
}

.plan-card.featured::before {
    content: "الاكثر طلباً";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
}

.plan-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.btn-plan {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.btn-plan:hover {
    background: var(--primary-green);
}

/* Why Use Section */
.why-us {
    background-color: var(--light-gray);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
}

/* Contact Form Redesign */
.contact {
    background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    text-align: right;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.benefit-item i {
    width: 35px;
    height: 35px;
    background: var(--white);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 0.85rem 2.8rem 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus {
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(35, 132, 64, 0.1);
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 132, 64, 0.3);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .benefit-item {
        justify-content: center;
    }
}

/* Modern Single Blog Post Design */
.post-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173d52 100%);
    padding: 7rem 0 5rem;
    color: var(--white);
    text-align: center;
}

.post-hero h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.post-container {
    max-width: 850px;
    margin: -4rem auto 5rem;
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.95;
    color: var(--text-main);
}

.post-content h2 {
    margin: 3.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--medium-gray);
    color: var(--primary-blue);
    font-size: 1.75rem;
}

.post-content p {
    margin-bottom: 1.8rem;
}

.post-content strong {
    color: var(--primary-green);
    font-weight: 700;
}

.post-content ul,
.post-content ol {
    margin-bottom: 2rem;
    padding-right: 1.5rem;
}

.post-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.post-navigation {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.back-to-blog {
    color: var(--primary-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 1.1rem;
}

.back-to-blog:hover {
    color: var(--primary-blue);
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .post-hero {
        padding: 4rem 1rem 3rem;
    }

    .post-hero h1 {
        font-size: 2rem;
    }

    .post-container {
        margin-top: 0;
        padding: 2.5rem 1.5rem;
        border-radius: 0;
        box-shadow: none;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}