/* Design System - CSS Custom Properties */
:root {
    /* COLORS */
    --color-primary: #2C3F83;
    --color-primary-dark: #1E2F5F;
    --color-primary-light: #E8EAF6;
    --color-secondary: #EC2024;
    --color-secondary-dark: #C41A1C;
    --color-secondary-light: #FFE5E5;
    --color-accent: #2C3F83;
    --color-white: #FFFFFF;
    --color-bg-soft: #F8FAFC;
    --color-text-dark: #1E293B;
    --color-text-medium: #475569;
    --color-text-light: #94A3B8;
    --color-success: #10B981;
    --color-gradient: linear-gradient(135deg, #1E2F5F 0%, #2C3F83 50%, #EC2024 100%);

    /* SPACING SCALE */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* TYPOGRAPHY SCALE */
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.375rem;
    --text-xl: 1.75rem;
    --text-2xl: 2.25rem;
    --text-3xl: 3rem;
    --text-hero: clamp(2rem, 5vw, 3.5rem);

    /* COMPONENTS */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;
    --shadow-soft: 0 4px 24px rgba(13, 59, 110, 0.08);
    --shadow-card: 0 8px 40px rgba(13, 59, 110, 0.12);
    --shadow-hover: 0 16px 48px rgba(26, 110, 189, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rendering Optimizations */
section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

#home,
.header {
    content-visibility: visible;
}

/* Statistics Section */
.statistics {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, rgba(44, 63, 131, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%232C3F83" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(44, 63, 131, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.8s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: var(--space-sm);
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Cairo', sans-serif;
    line-height: 1.2;
}

.stat-plus {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    font-family: 'Cairo', sans-serif;
    line-height: 1.2;
    display: inline-block;
}

.stat-text {
    font-size: var(--text-lg);
    color: var(--color-text-medium);
    font-weight: 600;
    line-height: 1.4;
}

.stat-desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: 500;
    line-height: 1.6;
    margin-top: 0.6rem;
    margin-bottom: 0;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(44, 63, 131, 0.08);
}

/* Statistics Animation */
.statistics .stat-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.statistics .stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.statistics .stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.statistics .stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation */
.counter-animated {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-card {
        padding: var(--space-lg);
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: var(--text-2xl);
    }

    .stat-plus {
        font-size: var(--text-2xl);
    }

    .stat-text {
        font-size: var(--text-base);
    }

    .stat-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }

    .statistics {
        padding: var(--space-lg) 0;
    }

    .stat-card {
        padding: var(--space-md);
    }
}

/* Accreditation Section */
.accreditation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.accreditation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(44, 63, 131, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.accreditation-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.accreditation-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(44, 63, 131, 0.08);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 63, 131, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(44, 63, 131, 0.12);
}

.accreditation-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C3F83, #EC2024);
    border-radius: 20px 20px 0 0;
}

.accreditation-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.accreditation-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.accreditation-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C3F83, #EC2024);
    border-radius: 50%;
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.accreditation-card:hover .accreditation-icon-bg {
    transform: rotate(0deg);
}

.accreditation-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--color-white);
    z-index: 1;
}

.accreditation-title-wrapper {
    flex: 1;
    min-width: 250px;
}

.accreditation h2 {
    color: var(--color-primary);
    font-size: 1.875rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}


.accreditation-logo {
    display: block;
    max-width: 140px;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(44, 63, 131, 0.15);
}

.accreditation-description {
    color: var(--color-text-medium);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    text-align: center;
    font-weight: 500;
}

.accreditation-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.accreditation-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(44, 63, 131, 0.08);
    transition: all 0.3s ease;
    min-width: 180px;
}

.accreditation-feature:hover {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 63, 131, 0.1);
}

.accreditation-feature i {
    color: var(--color-secondary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.accreditation-feature span {
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    font-weight: 600;
}


@media (max-width: 768px) {
    .accreditation {
        padding: 2rem 0;
    }

    .accreditation-card {
        margin: 0 var(--space-md);
        padding: 2rem;
    }

    .accreditation-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .accreditation-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .accreditation-icon {
        font-size: 1.5rem;
    }

    .accreditation h2 {
        font-size: 1.5rem;
    }

    .accreditation-features {
        justify-content: center;
        gap: 0.75rem;
    }

    .accreditation-feature {
        min-width: 150px;
        padding: 0.75rem 1rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image Alignment and Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Centered images for specific contexts */
img.centered {
    display: block;
    margin: 1rem auto;
    text-align: center;
}

/* Left aligned images */
img.left-align {
    float: left;
    margin: 0 1rem 1rem 0;
}

/* Right aligned images */
img.right-align {
    float: right;
    margin: 0 0 1rem 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    color: var(--color-text-dark);
    background: var(--color-white);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #2C3F83;
    transition: color 0.3s ease;
}

a:hover {
    color: #EC2024;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1E2F5F, #142045);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 63, 131, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #2C3F83;
    border: 2px solid #2C3F83;
}

.btn-secondary:hover {
    background: #2C3F83;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2C3F83;
    border: 2px solid #2C3F83;
}

.btn-outline:hover {
    background: #2C3F83;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-white {
    background: white;
    color: #2C3F83;
    border: 2px solid #2C3F83;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #2C3F83;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 63, 131, 0.2);
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
}

.navbar {
    padding: 1rem 0;
    height: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 120px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3F83;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2C3F83;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    height: 3px;
    background: #2C3F83;
    border-radius: 2px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #333;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: #f8f9fa;
    color: #2C3F83;
}

/* Tablet & Small Laptop Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .logo {
        width: 100px;
    }
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2C3F83;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic-image {
    width: 450px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.hero-graphic-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.hero-graphic {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3F83;
    font-size: 6rem;
    box-shadow: 0 20px 40px rgba(44, 63, 131, 0.2);
    animation: float 6s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #2C3F83;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #2C3F83;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #EC2024;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #2C3F83;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2C3F83;
}

.period {
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    font-size: 1rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #2C3F83;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #2C3F83;
}

/* Web Hosting Page - Specific Feature Icon Colors */
.web-hosting-page .features-section .feature-icon {
    background: linear-gradient(135deg, #FFFFFF, #F0F8FF);
    color: #2C3F83;
    border: 2px solid #2C3F83;
    box-shadow: 0 4px 12px rgba(44, 63, 131, 0.15);
}

.web-hosting-page .features-section .feature-icon i {
    color: #2C3F83;
}

.web-hosting-page .features-section .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 63, 131, 0.35);
}

.web-hosting-page .features-section .feature-item:hover .feature-icon i {
    color: #FFFFFF;
}

/* Individual icon colors for web hosting features */
.web-hosting-page .features-section .feature-item:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #FFFFFF, #E3F2FD);
    border-color: #1565C0;
}

.web-hosting-page .features-section .feature-item:nth-child(1) .feature-icon i {
    color: #1565C0;
}

.web-hosting-page .features-section .feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #FFFFFF, #E1F5FE);
    border-color: #0277BD;
}

.web-hosting-page .features-section .feature-item:nth-child(2) .feature-icon i {
    color: #0277BD;
}

.web-hosting-page .features-section .feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #FFFFFF, #E8EAF6);
    border-color: #283593;
}

.web-hosting-page .features-section .feature-item:nth-child(3) .feature-icon i {
    color: #283593;
}

.web-hosting-page .features-section .feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #FFFFFF, #EBF5FB);
    border-color: #1B4F72;
}

.web-hosting-page .features-section .feature-item:nth-child(4) .feature-icon i {
    color: #1B4F72;
}

/* Responsive design for web hosting feature icons */
@media (max-width: 768px) {
    .web-hosting-page .features-section .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Fix for medical centers page button visibility */
.main-content .cta-section .btn-secondary {
    background: white;
    color: #2C3F83;
    border: 2px solid #2C3F83;
}

.main-content .cta-section .btn-secondary:hover {
    background: #2C3F83;
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 140px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h3 {
    color: #2C3F83;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #2C3F83;
}

.footer-section h4 {
    color: #2C3F83;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2C3F83;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .contact-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer .contact-item i {
    color: #2C3F83;
    width: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .contact-item:hover i {
    color: #EC2024;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-header-image {
    margin-top: 2rem;
    font-size: 4rem;
    opacity: 0.8;
}

/* About Content */
.about-content {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-soft);
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gradient);
    border-radius: var(--radius-full);
}

.about-text p {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.about-text h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-dark);
    margin: var(--space-xl) 0 var(--space-md);
    text-align: center;
    position: relative;
}

.about-text h3::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.feature-item {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(26, 110, 189, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    display: block;
    text-align: center;
}

.feature-item h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.feature-item p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-medium);
    text-align: center;
    margin-bottom: 0;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-white));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    text-align: center;
    border: 1px solid rgba(26, 110, 189, 0.2);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.join-section h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    position: relative;
}

.join-section p {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 0;
    position: relative;
}

/* More Section */
.more-section {
    text-align: center;
    padding: var(--space-xl) 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.more-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gradient);
}

.more-section h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.more-section p {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: var(--text-2xl);
    }

    .page-subtitle {
        font-size: var(--text-base);
    }

    .about-text h2 {
        font-size: var(--text-xl);
    }

    .about-text h3 {
        font-size: var(--text-lg);
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-item {
        padding: var(--space-md);
    }

    .join-section {
        padding: var(--space-lg);
    }

    .more-section {
        padding: var(--space-lg) var(--space-md);
    }
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2rem;
    color: #2C3F83;
    margin-bottom: 1.5rem;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.key-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.key-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
}

.key-feature i {
    color: #28a745;
    font-size: 1.1rem;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3F83;
    font-size: 6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Modules Section */
.modules {
    padding: 80px 0;
    background: #f8f9fa;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.module-card h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.module-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.module-features {
    list-style: none;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}



/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: #f8f9fa;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.specialty-card h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.specialty-card p {
    color: #666;
    line-height: 1.6;
}

/* Center Types Section */
.center-types {
    padding: 80px 0;
    background: white;
}

.center-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.center-type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.center-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.center-type-card h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.center-type-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.center-features {
    list-style: none;
}

.center-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}



/* Services Overview Cards */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 63, 131, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(44, 63, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #2C3F83, #1E2F5F, #2C3F83);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.service-card-large:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(44, 63, 131, 0.15);
}

.service-card-large.highlight {
    background: linear-gradient(135deg, #2C3F83 0%, #1E2F5F 50%, #142045 100%);
    color: white;
    border: none;
}

.service-card-large.highlight::before {
    background: linear-gradient(90deg, #ffffff, #f0f8ff, #ffffff);
}

.service-card-large.highlight .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card-large.highlight h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card-large.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.service-card-large .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 63, 131, 0.2);
    position: relative;
}

.service-card-large .service-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-large:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(44, 63, 131, 0.3);
}

.service-card-large:hover .service-icon::after {
    opacity: 0.3;
}

.service-card-large h3 {
    font-size: 1.8rem;
    color: #2C3F83;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
}

.service-card-large h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2C3F83, #1E2F5F);
    border-radius: 2px;
}

.service-card-large.highlight h3::after {
    background: linear-gradient(90deg, #ffffff, #f0f8ff);
}

.service-card-large p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.service-card-large .emphasis {
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #2C3F83;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(44, 63, 131, 0.08);
    border-radius: 25px;
    border: 2px solid rgba(44, 63, 131, 0.15);
    transition: all 0.3s ease;
}

.service-card-large .emphasis:hover {
    background: rgba(44, 63, 131, 0.15);
    transform: scale(1.05);
}

.service-card-large.highlight .emphasis {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card-large.highlight .emphasis:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Integration Cards */
.integration {
    padding: 80px 0;
    background: #f8f9fa;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.integration-card h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Detailed Section */
.features-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
}

.features-detailed .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 63, 131, 0.08);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2C3F83, #1E2F5F);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 63, 131, 0.15);
    border-color: rgba(44, 63, 131, 0.2);
}

.features-detailed .feature-item .feature-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin: 0;
    box-shadow: 0 4px 15px rgba(44, 63, 131, 0.25);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 6px 20px rgba(44, 63, 131, 0.35);
}

.features-detailed .feature-item h3 {
    font-size: 1.3rem;
    color: #2C3F83;
    margin-bottom: 1rem;
    font-weight: 700;
    padding-right: 3.5rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.features-detailed .feature-item p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: justify;
}

/* Alternative Card Layout - More Compact */
.features-detailed .feature-item.compact {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
}

.features-detailed .feature-item.compact .feature-icon {
    position: static;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

.features-detailed .feature-item.compact h3 {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.features-detailed .feature-item.compact p {
    font-size: 0.9rem;
}

/* Colorful icons for compact feature items */
.features-detailed .feature-item.compact .feature-icon {
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Individual card colors - Soft blue and white theme */
.features-detailed .feature-item.compact:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: #1565C0;
}

.features-detailed .feature-item.compact:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #E1F5FE, #B3E5FC);
    color: #0277BD;
}

.features-detailed .feature-item.compact:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #E8EAF6, #C5CAE9);
    color: #283593;
}

.features-detailed .feature-item.compact:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    color: #4527A0;
}

.features-detailed .feature-item.compact:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #E0F2F1, #B2DFDB);
    color: #00695C;
}

.features-detailed .feature-item.compact:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #F1F8E9, #DCEDC8);
    color: #33691E;
}

.features-detailed .feature-item.compact:nth-child(7) .feature-icon {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: #E65100;
}

.features-detailed .feature-item.compact:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
    color: #880E4F;
}

.features-detailed .feature-item.compact:nth-child(9) .feature-icon {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    color: #1B5E20;
}

.features-detailed .feature-item.compact:nth-child(10) .feature-icon {
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    color: #F57F17;
}

.features-detailed .feature-item.compact:nth-child(11) .feature-icon {
    background: linear-gradient(135deg, #F5F5F5, #E0E0E0);
    color: #424242;
}

.features-detailed .feature-item.compact:nth-child(12) .feature-icon {
    background: linear-gradient(135deg, #E3F2FD, #90CAF9);
    color: #0D47A1;
}

.features-detailed .feature-item.compact:nth-child(13) .feature-icon {
    background: linear-gradient(135deg, #EBF5FB, #D6EAF8);
    color: #1B4F72;
}

.features-detailed .feature-item.compact:nth-child(14) .feature-icon {
    background: linear-gradient(135deg, #F4F6F6, #D5DBDB);
    color: #34495E;
}

.features-detailed .feature-item.compact:nth-child(15) .feature-icon {
    background: linear-gradient(135deg, #F0F3F4, #D5D8DC);
    color: #2C3E50;
}

/* Modern Card Design with Gradient Background */
.features-detailed .feature-item.modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid rgba(44, 63, 131, 0.12);
}

.features-detailed .feature-item.modern::before {
    width: 100%;
    height: 3px;
    right: 0;
    left: 0;
    transform: scaleX(0);
}

.features-detailed .feature-item.modern:hover::before {
    transform: scaleX(1);
}

.features-detailed .feature-item.modern .feature-icon {
    background: linear-gradient(135deg, #2C3F83, #1E2F5F, #142045);
    border-radius: 50%;
}

.features-detailed .feature-item.modern h3 {
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Card with Icon Background */
.features-detailed .feature-item.icon-bg {
    padding: 2rem;
    text-align: center;
}

.features-detailed .feature-item.icon-bg .feature-icon {
    position: static;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
}

.features-detailed .feature-item.icon-bg h3 {
    padding-right: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.features-detailed .feature-item.icon-bg p {
    text-align: center;
}

/* SMS System Section */
.sms-system {
    padding: 80px 0;
    background: white;
}

.sms-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sms-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.sms-features {
    list-style: none;
    text-align: right;
    max-width: 600px;
    margin: 0 auto;
}

.sms-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sms-features li:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}



/* Security Section */
.security {
    padding: 80px 0;
    background: #f8f9fa;
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.security-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.security-features {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.security-features h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-features ul {
    list-style: none;
    text-align: right;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.security-features li:hover {
    background: #e9ecef;
}



/* Service Hero */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    color: white;
    overflow: hidden;
}

.service-hero .hero-title {
    color: white;
}

.service-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.service-hero .hero-graphic {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.digital-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.digital-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.digital-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Transformation Process */
.transformation-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 30px;
    bottom: -30px;
    width: 2px;
    background: #e9ecef;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
}

.step-details {
    list-style: none;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}



/* Digital Solutions */
.digital-solutions {
    padding: 80px 0;
    background: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}



/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.story-info h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 0.25rem;
}

.story-type {
    color: #666;
    font-size: 0.9rem;
}

.story-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-results {
    display: flex;
    gap: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2C3F83;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    width: 100%;
}

.contact-form-container {
    max-width: 600px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #1E2F5F, #142045, #1E2F5F);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 63, 131, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(44, 63, 131, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: right 0.6s ease;
}

.contact-item:hover .contact-icon::before {
    right: 100%;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #1E2F5F, #142045);
    box-shadow: 0 12px 30px rgba(44, 63, 131, 0.5);
}

.contact-details h4 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-details p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-details .phone-link,
.contact-details .email-link {
    color: #2C3F83;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.phone-link {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    direction: ltr;
    text-align: right;
    unicode-bidi: bidi-override;
}

.contact-details .phone-link:hover,
.contact-details .email-link:hover {
    color: #1E2F5F;
    text-decoration: underline;
    transform: translateX(4px);
}

.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 63, 131, 0.1);
    border: 1px solid rgba(44, 63, 131, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C3F83;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 63, 131, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer-phone,
.footer-email {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: #2C3F83;
}

.quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-actions h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #2C3F83;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #2C3F83;
    color: white;
    transform: translateX(-5px);
}

.action-btn i {
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C3F83;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #2C3F83;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: #2C3F83;
}



/* Offices Section */
.offices {
    padding: 80px 0;
    background: #f8f9fa;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.office-image {
    height: 150px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.office-content {
    padding: 2rem;
}

.office-content h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin-bottom: 1rem;
}

.office-content p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.office-content p i {
    color: #2C3F83;
    width: 20px;
}

.office-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2C3F83;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.office-link:hover {
    gap: 1rem;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
}

.payment-content {
    max-width: 900px;
    margin: 0 auto;
}

.payment-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.payment-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(13, 59, 110, 0.08);
    border: 1px solid rgba(13, 59, 110, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.payment-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 110, 189, 0.05), transparent);
    transition: right 0.6s ease;
}

.payment-item:hover::before {
    right: 100%;
}

.payment-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 110, 189, 0.15);
    border-color: var(--color-primary);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: right 0.6s ease;
}

.payment-item:hover .payment-icon::before {
    right: 100%;
}

.payment-item:hover .payment-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 12px 30px rgba(26, 110, 189, 0.5);
}

.payment-details h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.payment-details p {
    color: var(--color-text-medium);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.payment-details strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.payment-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.payment-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
    transform: translateX(4px);
}

.payment-notice {
    background: linear-gradient(135deg, #fff3cd, #fef5e7);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.payment-notice p {
    margin-bottom: 0.5rem;
    color: #856404;
    font-weight: 500;
}

.payment-notice strong {
    color: #856404;
    font-weight: 700;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: #2C3F83;
    margin: 0;
}

.faq-question i {
    color: #2C3F83;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: none;
    overflow: visible;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    color: white;
    text-align: center;
}

.social-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.social-link-large:hover {
    transform: translateY(-5px);
}

.social-link-large i {
    font-size: 2.5rem;
}

.social-link-large span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        max-width: 100%;
        min-width: auto;
        z-index: 999;
        display: none;
    }

    .dropdown.is-open {
        display: block;
    }

    .dropdown-menu.is-open {
        display: block !important;
    }

    .dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    .dropdown.mobile-open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

    .hero-graphic-image {
        width: 350px;
        height: 210px;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-section {
        padding: 60px 0;
    }

    .payment-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .payment-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .payment-notice {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .digital-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .story-results {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links-large {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .digital-stats {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Digital Transformation Page Styles */
.page-hero {
    background: var(--color-gradient);
    padding: var(--space-2xl) 0;
    text-align: center;
    color: var(--color-white);
}

.page-hero-title {
    font-size: var(--text-hero);
    font-weight: 800;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease;
}

.page-hero-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.intro-section {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-soft);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.intro-content p {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--color-text-medium);
}

.importance-section {
    padding: var(--space-2xl) 0;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.importance-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.importance-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.importance-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--color-primary);
}

.importance-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.importance-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-medium);
}

.challenges-section {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-soft);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: #FFF3CD;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F59E0B;
    flex-shrink: 0;
}

.challenge-content h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.challenge-content p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-medium);
}

.benefits-section {
    padding: var(--space-2xl) 0;
}

.benefits-list {
    margin-top: var(--space-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-hover);
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--color-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.benefit-content p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-medium);
}

/* Digital Transformation Page Styles */
.page-hero {
    padding: calc(var(--space-2xl) + var(--space-lg)) 0 var(--space-2xl);
    background: var(--color-gradient);
    color: var(--color-white);
    text-align: center;
}

.page-hero-title {
    font-size: var(--text-hero);
    font-weight: 800;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-hero-subtitle {
    font-size: var(--text-xl);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.main-content {
    padding: var(--space-2xl) 0;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.main-description {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.main-description h2 {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.main-description p {
    font-size: var(--text-lg);
    color: var(--color-text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.integration-section {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
}

.integration-section h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.integration-section p {
    font-size: var(--text-md);
    color: var(--color-text-medium);
}

.management-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.management-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.management-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.management-card h3 {
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.management-card p {
    color: var(--color-text-medium);
    line-height: 1.6;
}

.program-services {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-lg);
}

.program-services h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.program-services p {
    font-size: var(--text-md);
    color: var(--color-text-medium);
    margin-bottom: var(--space-sm);
}

.program-services .highlight {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin: var(--space-sm) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.feature-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-item h3 {
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}



.feature-item p {
    color: var(--color-text-medium);
    line-height: 1.6;
    font-size: var(--text-sm);
}

.cta-section {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-gradient);
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: var(--space-xl);
}

.cta-section h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: white;
}

.cta-section p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .management-sections {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .main-description h2 {
        font-size: var(--text-xl);
    }

    .integration-section h3,
    .program-services h3,
    .cta-section h3 {
        font-size: var(--text-lg);
    }
}

.content-section {
    margin-bottom: var(--space-2xl);
}

.content-block {
    margin: var(--space-xl) 0;
}

.lead-paragraph {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-medium);
    font-weight: 500;
}

.conclusion {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-primary);
    font-weight: 600;
    padding: var(--space-lg);
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--color-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.benefit-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(26, 110, 189, 0.1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-medium);
}

.financial-benefits {
    margin: var(--space-xl) 0;
}

.financial-item {
    background: var(--color-white);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border-right: 4px solid var(--color-success);
    transition: var(--transition);
}

.financial-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.financial-item h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.financial-item h3 i {
    color: var(--color-success);
    font-size: 1.2rem;
}

.financial-item p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-medium);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.credibility-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(26, 110, 189, 0.1);
}

.credibility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.credibility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.credibility-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.credibility-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: var(--text-2xl);
    }

    .page-hero-subtitle {
        font-size: var(--text-lg);
    }

    .benefits-grid,
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .benefit-card,
    .credibility-card,
    .financial-item {
        padding: var(--space-md);
    }

    .lead-paragraph,
    .conclusion {
        font-size: var(--text-base);
    }
}

.future-section {
    padding: var(--space-2xl) 0;
    background: var(--color-gradient);
    color: var(--color-white);
    text-align: center;
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
}

.future-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.future-content p {
    font-size: var(--text-md);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

/* Responsive Design for Digital Transformation Page */
@media (max-width: 768px) {
    .importance-grid {
        grid-template-columns: 1fr;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item:hover {
        transform: translateY(-4px);
    }

    .challenge-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Digital Solutions Section */
.digital-solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 1rem auto 0;
    font-weight: 500;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 63, 131, 0.08);
    text-align: center;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #2C3F83, #1E2F5F, #2C3F83);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 63, 131, 0.15);
    border-color: rgba(44, 63, 131, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 63, 131, 0.2);
    position: relative;
}

.solution-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: linear-gradient(135deg, #2C3F83, #1E2F5F);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(44, 63, 131, 0.3);
}

.solution-card:hover .solution-icon::after {
    opacity: 0.3;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #2C3F83;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.solution-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2C3F83, #1E2F5F);
    border-radius: 2px;
}

.solution-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    margin-top: 1.5rem;
}

/* Responsive Design for Digital Solutions */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 2rem;
    }

    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .solution-card h3 {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Hosting Page Styles */
.plan-storage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid rgba(44, 63, 131, 0.1);
}

.plan-storage i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.plan-storage span {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.pricing-card .btn-outline {
    margin-top: 0.5rem;
    width: 100%;
}

.service-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-hero .hero-subtitle.primary {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.service-hero .btn-primary {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.service-hero .btn-primary:hover {
    background: transparent;
    color: white;
}

/* Enhanced Hosting Page Styles */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--color-success);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-header p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    margin: 0.5rem 0 1.5rem 0;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta .btn-large span {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced CTA Section for Hosting Page */
.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta .btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.cta .btn-large i {
    font-size: 1.3rem;
    margin-left: 8px;
}

.cta p:last-child {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

/* CTA Mobile Optimizations */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .cta .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .cta p:last-child {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .cta p:last-child {
        font-size: 0.95rem;
    }
}

/* RTL Improvements for Hosting Page */
[dir="rtl"] .pricing-features li {
    text-align: right;
}

[dir="rtl"] .plan-storage {
    flex-direction: row-reverse;
}

[dir="rtl"] .pricing-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* Comprehensive RTL/LTR Improvements */
[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .section-title,
[dir="rtl"] .section-subtitle {
    text-align: center;
}

[dir="rtl"] .feature-card {
    text-align: right;
}

[dir="rtl"] .pricing-card {
    text-align: right;
}

[dir="rtl"] .pricing-header {
    text-align: center;
}

[dir="rtl"] .price {
    justify-content: center;
}

[dir="rtl"] .cta-content {
    text-align: center;
}

[dir="rtl"] .footer-content {
    text-align: right;
}

[dir="rtl"] .footer-brand {
    align-items: flex-start;
}

[dir="rtl"] .social-links {
    justify-content: flex-start;
}

/* LTR Support for English Content */
[dir="ltr"] .hero-content {
    text-align: left;
}

[dir="ltr"] .feature-card {
    text-align: left;
}

[dir="ltr"] .pricing-card {
    text-align: left;
}

[dir="ltr"] .footer-brand {
    align-items: flex-start;
}

[dir="ltr"] .social-links {
    justify-content: flex-start;
}

/* Mixed Direction Elements */
[dir="rtl"] .mixed-content {
    direction: ltr;
    text-align: left;
}

[dir="ltr"] .mixed-content {
    direction: ltr;
    text-align: left;
}

/* Phone Numbers and Technical Content */
.phone-number,
.tech-spec,
.code-snippet {
    direction: ltr;
    text-align: center;
    font-family: 'Courier New', monospace;
}

[dir="rtl"] .phone-number,
[dir="rtl"] .tech-spec,
[dir="rtl"] .code-snippet {
    direction: ltr;
    text-align: center;
    unicode-bidi: embed;
}

/* Icons Direction Fix */
[dir="rtl"] .fa-chevron-left {
    transform: rotate(180deg);
}

[dir="rtl"] .fa-chevron-right {
    transform: rotate(180deg);
}

[dir="rtl"] .fa-arrow-left {
    transform: rotate(180deg);
}

[dir="rtl"] .fa-arrow-right {
    transform: rotate(180deg);
}

/* Navigation Dropdown RTL Fix */
[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .dropdown-menu li {
    text-align: right;
}

/* Buttons with Icons RTL Fix */
[dir="rtl"] .btn i.fa-arrow-left,
[dir="rtl"] .btn i.fa-chevron-left {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="rtl"] .btn i.fa-arrow-right,
[dir="rtl"] .btn i.fa-chevron-right {
    margin-right: 0.5rem;
    margin-left: 0;
}

/* Service Links RTL Fix */
[dir="rtl"] .service-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-link i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .service-hero .hero-title {
        font-size: 2rem;
    }

    .service-hero .hero-subtitle.primary {
        font-size: 1.5rem;
    }

    .service-hero .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .plan-storage {
        padding: 0.75rem;
    }

    .plan-storage i {
        font-size: 1rem;
    }

    .plan-storage span {
        font-size: 0.875rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-hero .hero-title {
        font-size: 1.8rem;
    }

    .service-hero .hero-subtitle.primary {
        font-size: 1.3rem;
    }

    .service-hero .hero-description {
        font-size: 0.95rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .pricing-features i {
        font-size: 0.8rem;
    }
}