:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary-color: #334155;
    --accent-color: #22d3ee;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-left: 10px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
}

.btn-dark {
    background-color: var(--bg-dark);
    color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s;
}

header.sticky {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: var(--bg-dark);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
}

.btn-login {
    background: var(--bg-dark);
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.badge {
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bg-dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: 0.3s ease;
    z-index: 10;
}

.glass-card:hover {
    transform: scale(1.05) translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.9);
}

.floating-1 {
    top: 25px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
    border-right: 4px solid #f59e0b;
    /* Amber accent */
}

.floating-2 {
    bottom: 50px;
    left: -20px;
    animation: float 4s ease-in-out 2s infinite;
    border-left: 4px solid #10b981;
    /* Emerald accent */
}

.floating-1 i {
    color: #f59e0b;
}

.floating-2 i {
    color: #10b981;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Features */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0d4f5c 100%);
    position: relative;
}

.features .section-title h2 {
    color: white;
}

.features .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-bottom-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 26px;
    margin-bottom: 22px;
}

.feature-card:nth-child(1) .icon-box {
    background: #eff6ff;
    color: #2563eb;
}

.feature-card:nth-child(2) .icon-box {
    background: #f0fdf4;
    color: #16a34a;
}

.feature-card:nth-child(3) .icon-box {
    background: #faf5ff;
    color: #9333ea;
}

.feature-card:nth-child(4) .icon-box {
    background: #fff7ed;
    color: #ea580c;
}

/* Access Section - Ultra Premium Redesign */
.access-section {
    padding: 120px 0;
    background: #0f172a; /* Deep dark background */
    color: white;
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.access-section h2 {
    margin-bottom: 70px;
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.access-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.access-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(14, 165, 233, 0.1);
}

.access-card:hover .card-glow {
    opacity: 1;
}

.access-card i.main-icon {
    font-size: 70px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
    transition: all 0.5s ease;
}

.windows-card i.main-icon { color: #00a4ef; }
.web-card i.main-icon { color: #0ea5e9; }
.android-card i.main-icon { color: #3ddc84; }

.access-card:hover i.main-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px currentColor);
}

.access-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.access-card p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 280px;
}

/* Redesigned Pill Buttons - High Visibility */
.access-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff !important; /* Force white text */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-windows { 
    background: #00a4ef !important; 
    box-shadow: 0 10px 30px rgba(0, 164, 239, 0.4); 
}
.btn-web { 
    background: #0ea5e9 !important; 
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4); 
}
.btn-android { 
    background: #3ddc84 !important; 
    box-shadow: 0 10px 30px rgba(61, 220, 132, 0.4); 
    color: #0d2233 !important; /* Android green looks better with dark text */
}

.btn-android i {
    color: #0d2233 !important;
}

.access-btn-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.access-btn-pill:hover::before {
    width: 300px;
    height: 300px;
}

.access-btn-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-web.disabled {
    background: #64748b !important;
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none !important;
}

.access-card.highlighted {
    border: 1px solid rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.05);
}

.access-card.highlighted::after {
    content: 'المُوصى به';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0ea5e9;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Group Styling */
.download-group {
    width: 100%;
    display: flex;
    justify-content: center;
}




/* Footer */
footer {
    padding: 80px 0 30px;
    background: #f8fafc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    color: var(--text-muted);
}

/* Security Section */
.security-section {
    padding: 80px 0 0;
    background: linear-gradient(135deg, #0f172a 0%, #0c2340 60%, #0d3b4f 100%);
    overflow: hidden;
    position: relative;
}

.section-divider {
    height: 120px;
    background: linear-gradient(to bottom, #0d3b4f, #062a30);
    position: relative;
    z-index: 1;
}

.security-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Shield Side */
.shield-side {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.shield-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.shield-icon {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.shield-icon i {
    font-size: 80px;
    color: #0ea5e9;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.6));
    animation: shield-bounce 3s ease-in-out infinite;
}

.shield-percent {
    color: white;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Rings */
.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(14, 165, 233, 0.3);
    animation: ring-expand 3s ease-in-out infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation-delay: 0s;
}

.ring-2 {
    width: 210px;
    height: 210px;
    animation-delay: 0.7s;
}

.ring-3 {
    width: 260px;
    height: 260px;
    animation-delay: 1.4s;
}

@keyframes ring-expand {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes shield-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.shield-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* Content Side */
.security-content {
    flex: 1;
}

.security-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.4);
    color: #38bdf8;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.security-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.security-content>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Progress Bars */
.security-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

/* .bar-item is a container only */

.bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
}

.bar-val {
    color: #0ea5e9;
    font-weight: 800;
}

.bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 50px;
    background: linear-gradient(90deg, #0ea5e9, #22d3ee);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.trust-badge i {
    color: #0ea5e9;
}

@media (max-width: 900px) {
    .security-layout {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .bar-header {
        text-align: right;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}


.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 16px auto 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.pricing-card {
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* Left Card - Dark Teal */
.why-us-card {
    background: linear-gradient(160deg, #0d4f5c 0%, #0a7a65 100%);
    color: white;
}

/* Center Card - Light border / Amber highlight */
.unlimited-card {
    background: white;
    border: 2px solid #f59e0b;
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

/* Right Card - Light */
.free-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
}

/* Badges */
.pricing-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    align-self: flex-start;
}

.badge-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

.badge-amber {
    background: #f59e0b;
    color: white;
}

.badge-teal {
    background: #0d9488;
    color: white;
}

/* Titles */
.pricing-title-big {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}

.plan-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--bg-dark);
    margin-top: 5px;
}

/* Price */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--bg-dark);
}

.unlimited-card .price-amount {
    color: #f59e0b;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Why us list */
.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Features list */
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
    font-weight: 600;
}

.check-icon {
    color: #f59e0b;
    font-size: 18px;
    flex-shrink: 0;
}

.teal-check {
    color: #0d9488 !important;
}

.x-icon {
    color: #cbd5e1;
    font-size: 18px;
    flex-shrink: 0;
}

/* Try Button for Why Us Card */
.btn-try {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    align-self: flex-start;
    transition: 0.3s;
}

.btn-try:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* White outline button */
.btn-outline-white {
    display: block;
    text-align: center;
    border: 2px solid white;
    color: white;
    padding: 14px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    background: transparent;
    transition: 0.3s;
    margin-top: auto;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Amber button */
.btn-amber {
    display: block;
    text-align: center;
    background: #f59e0b;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
    transition: 0.3s;
    margin-top: auto;
}

.btn-amber:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Teal button */
.btn-teal {
    display: block;
    text-align: center;
    background: #0d9488;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
    transition: 0.3s;
    margin-top: auto;
}

.btn-teal:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f1f5f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12);
}

.testimonial-card.featured {
    background: var(--bg-dark);
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.testimonial-quote i {
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.4;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    flex: 1;
}

.testimonial-card.featured .testimonial-text {
    color: #94a3b8;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stars i {
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

img.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text-main);
    font-size: 15px;
}

.testimonial-card.featured .testimonial-author strong {
    color: white;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .access-card.highlighted {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links.logo-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-logo-img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    .logo-text {
        font-size: 24px;
        font-weight: 800;
        color: var(--bg-dark);
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8fafc; /* Subtle light background to make cards pop */
}

/* Contact Pillars Redesign - Horizontal layout */
.contact-layout.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-pillar {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Clear shadow */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-pillar:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

/* Brand specific borders on hover */
.contact-pillar.whatsapp:hover { border-color: #25D366; }
.contact-pillar.telegram:hover { border-color: #0088cc; }
.contact-pillar.email:hover { border-color: #0ea5e9; }

.pillar-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-pillar.whatsapp .pillar-icon { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.contact-pillar.telegram .pillar-icon { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
.contact-pillar.email .pillar-icon { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }

.contact-pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background: transparent; /* Aesthetic choice */
}

/* Icon glow effect on hover */
.contact-pillar.whatsapp:hover .pillar-icon { color: #25D366; filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4)); }
.contact-pillar.telegram:hover .pillar-icon { color: #0088cc; filter: drop-shadow(0 0 8px rgba(0, 136, 204, 0.4)); }
.contact-pillar.email:hover .pillar-icon { color: #0ea5e9; filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4)); }

.contact-pillar h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.contact-pillar p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.btn-contact-pill {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.whatsapp .btn-contact-pill { background: #25D366; color: white; }
.telegram .btn-contact-pill { background: #0088cc; color: white; }
.email .btn-contact-pill { background: #0ea5e9; color: white; }

.btn-contact-pill:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .contact-layout.pillars {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header-blog {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.blog-title-divider {
    width: 60px;
    height: 3px;
    background: #facc15;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f8fafc;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-body {
    padding: 0 25px 30px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title-box {
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-title-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #94a3b8;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    flex: 1;
}

.btn-read-more {
    display: inline-block;
    background: #fbbf24;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    align-self: center;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: #f59e0b;
    color: #ffffff;
}

.btn-view-all {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-view-all:hover {
    background: #1e293b;
    color: #ffffff;
}

.mt-50 {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Main Footer */
.main-footer {
    background-color: #062a30;
    color: #e2e8f0;
    padding: 80px 0 0;
    font-family: 'Inter', 'Cairo', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: #facc15;
    /* Golden Yellow */
    border-radius: 2px;
}

/* Brand Column */
.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-left: 10px;
}

.brand-col .logo-text {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 25px;
    max-width: 380px;
}

.footer-social-blocks {
    display: flex;
    gap: 15px;
}

.social-block {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s;
}

.social-block:hover {
    background: #facc15;
    color: #062a30;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

/* Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-links-list li a i {
    font-size: 10px;
    color: #facc15;
    opacity: 0.7;
}

.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #041e22;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copy-icon {
    font-size: 16px;
    color: #facc15;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        color: var(--bg-dark);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 15px;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .btn-login {
        text-align: center;
        margin-top: 10px;
    }
}


.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}