/*
Theme Name: شركة السبكي للمحتوى الإلكتروني
Theme URI: https://example.com
Author: شركة السبكي
Author URI: https://example.com
Description: قالب ووردبريس احترافي لشركة السبكي للمحتوى الإلكتروني - يقدم تصميمًا عصريًا ومتجاوبًا مع دعم كامل للغة العربية
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sabki
Tags: rtl-language-support, custom-menu, featured-images, translation-ready
*/

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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    transition: background-color 0.3s, color 0.3s;
    padding-top: 80px;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #111827;
    color: #e5e7eb;
}

body.dark-mode .container {
    color: #e5e7eb;
}

body.dark-mode .service-card,
body.dark-mode .benefit-item,
body.dark-mode .portfolio-item,
body.dark-mode .feature-card {
    background: #1f2937;
    color: #e5e7eb;
}

body.dark-mode .service-card:hover,
body.dark-mode .benefit-item:hover,
body.dark-mode .portfolio-item:hover,
body.dark-mode .feature-card:hover {
    background: #374151;
}

body.dark-mode .section-title,
body.dark-mode .service-title,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #e5e7eb;
}

body.dark-mode .service-description,
body.dark-mode .text-light,
body.dark-mode p {
    color: #9ca3af;
}

body.dark-mode .bg-light {
    background: #1f2937;
}


body.dark-mode .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

body.dark-mode .cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

body.dark-mode .contact-info-box,
body.dark-mode .contact-form-box {
    background: #1f2937;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
    border-color: var(--primary-color);
    background: #4b5563;
}

body.dark-mode .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

body.dark-mode .btn-primary:hover {
    background: var(--secondary-color);
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

body.dark-mode .header {
    background: #1f2937;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.logo a {
    text-decoration: none;
}

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

/* Hide mobile menu on desktop */
.nav-menu-mobile {
    display: none;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-menu > li.has-submenu {
    position: relative;
}

.nav-menu > li.has-submenu:hover .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu > li.has-submenu:hover > a {
    color: var(--primary-color);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

body.dark-mode .nav-menu a {
    color: #e5e7eb;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.submenu-toggle {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-menu > li.has-submenu:hover .submenu-toggle {
    transform: rotate(180deg);
}

/* Submenu Styles */
.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

body.dark-mode .sub-menu {
    background: #1f2937;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s;
}

body.dark-mode .sub-menu a {
    color: #e5e7eb;
}

.sub-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-right: 25px;
}

body.dark-mode .sub-menu a:hover {
    background: #374151;
}

.sub-menu a::after {
    display: none;
}

.sub-menu a::before {
    content: '→';
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.sub-menu a:hover::before {
    opacity: 1;
    margin-left: 5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px 12px;
    transition: all 0.3s;
    z-index: 1001;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

body.dark-mode .menu-toggle {
    color: #e5e7eb;
}

body.dark-mode .menu-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--bg-lighter);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 2px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 18px;
    background: var(--bg-lighter);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 3px solid transparent;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.feature-item:hover {
    background: linear-gradient(90deg, #e0e7ff 0%, #f0f4ff 100%);
    transform: translateX(-8px);
    box-shadow: var(--shadow);
    border-right-color: var(--primary-color);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--text-color);
    font-size: 16px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

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

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-item:hover::after {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    background: var(--white);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.portfolio-item > * {
    position: relative;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 0.05;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: var(--white);
}

.portfolio-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.15) rotate(-5deg);
}

.portfolio-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.portfolio-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 48px;
}

.portfolio-item .btn {
    margin-top: 10px;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--white);
    padding-right: 5px;
}

body.dark-mode .footer {
    background: #0f172a;
}

body.dark-mode .footer-section h3 {
    color: #e5e7eb;
}

body.dark-mode .footer-section p,
body.dark-mode .footer-section ul li a {
    color: #9ca3af;
}

body.dark-mode .footer-section ul li a:hover {
    color: var(--white);
}

body.dark-mode .footer-bottom {
    border-top-color: #374151;
    color: #6b7280;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* WordPress Content Styles */
.entry-content {
    padding: 20px 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.entry-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
    margin-right: 20px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    /* Hide desktop menu on mobile */
    .nav-menu-desktop {
        display: none !important;
    }
    
    /* Mobile menu styling - hidden by default */
    .nav-menu-mobile {
        display: none !important;
        position: fixed !important;
        top: 80px !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--white) !important;
        flex-direction: column !important;
        padding: 20px !important;
        box-shadow: var(--shadow-lg) !important;
        gap: 0 !important;
        margin: 0 !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        z-index: 999999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }

    body.dark-mode .nav-menu-mobile {
        background: #1f2937 !important;
    }

    /* Show menu when active */
    .nav-menu-mobile.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    body.dark-mode .nav-menu li {
        border-bottom-color: #374151;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-menu .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: var(--bg-light);
        border-radius: 0;
        min-width: auto;
        width: 100%;
        transform: none;
    }

    body.dark-mode .nav-menu .sub-menu {
        background: #374151;
    }

    .nav-menu li.has-submenu.active .sub-menu {
        display: block;
    }

    .nav-menu li.has-submenu.active .submenu-toggle {
        transform: rotate(180deg);
    }

    .nav-menu .sub-menu li {
        border-bottom: none;
        border-top: 1px solid var(--border-color);
    }

    body.dark-mode .nav-menu .sub-menu li {
        border-top-color: #4b5563;
    }

    .nav-menu .sub-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .nav-menu .sub-menu a:hover {
        padding-right: 25px;
    }

    /* Show menu toggle on mobile */
    .menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 1000002 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        pointer-events: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 10px !important;
        margin: 0 !important;
        min-width: 44px !important;
        min-height: 44px !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 32px !important;
        line-height: 1 !important;
    }
    
    .menu-toggle:active {
        transform: scale(0.9) !important;
        opacity: 0.7 !important;
    }
    
    .menu-toggle:focus {
        outline: 2px solid var(--primary-color) !important;
        outline-offset: 2px !important;
    }
    
    .menu-toggle:hover {
        opacity: 0.8 !important;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 25px;
    }

    .service-title {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .services,
    .benefits,
    .portfolio,
    .cta {
        padding: 50px 0;
    }

    .service-card {
        padding: 20px;
    }

    .portfolio-item {
        padding: 30px 20px;
    }

    .portfolio-icon {
        font-size: 48px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 60px;
}

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

.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.feature-box .feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-box p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-box,
.vision-box {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.mission-box h2,
.vision-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-box p,
.vision-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 32px;
    min-width: 40px;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.success-message,
.error-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-card .feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    padding: 8px 0;
    padding-right: 25px;
    position: relative;
    color: var(--text-color);
}

.feature-card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Steps */
.process-section,
.design-process {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.process-section h2,
.design-process h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

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

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Types */
.content-types,
.content-platforms {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.content-types h2,
.content-platforms h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.content-grid,
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.content-type,
.platform-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.content-type:hover,
.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.content-type h3,
.platform-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.content-type p,
.platform-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Backlink Benefits */
.backlink-benefits {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.backlink-benefits h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Support Levels */
.support-levels {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.support-levels h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

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

.level-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.level-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.level-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.level-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-card ul li {
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    color: var(--text-color);
}

.level-card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-note {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.pricing-note h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pricing-note p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .platforms-grid,
    .benefits-list,
    .levels-grid {
        grid-template-columns: 1fr;
    }
}

