:root {
    /* ✅ ألوان الوضع النهاري (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --card-bg: #ffffff;
    --border-color: #eeeeee;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1a1a1a;
    --input-bg: #ffffff;
}

/* ✅ ألوان الوضع الليلي (Dark Mode) */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #0b1120;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --card-bg: #1e293b;
    --border-color: #334155;
    --nav-bg: rgba(15, 23, 42, 0.95);
    --footer-bg: #020617;
    --input-bg: #1e293b;
}

/* تطبيق الألوان الأساسية */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* تحسينات عامة للمكونات */
.navbar {
    background-color: var(--nav-bg) !important;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    color: var(--text-primary) !important;
}

.feature-box,
.stat-item,
.card,
.product-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

.feature-box h3,
.section-header h2 {
    color: var(--text-primary) !important;
}

.feature-box p,
.section-header p {
    color: var(--text-secondary) !important;
}

.main-footer {
    background-color: var(--footer-bg) !important;
}

/* زر تبديل الثيم */
.theme-switch {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.theme-switch:hover {
    transform: rotate(15deg);
}

.theme-switch .fa-sun {
    display: none;
    color: #ffca28;
}

.theme-switch .fa-moon {
    display: block;
    color: #6dbdc8;
}

[data-theme="dark"] .theme-switch .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-switch .fa-moon {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    direction: rtl;
    /* لأجل العربية */
}

/* Top Bar */
.top-bar {
    background: #6dbdc8;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-phone i {
    color: #fff;
    font-size: 16px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 4px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-right: 10px;
    /* المسافة بين الرقم والزر */
}

.whatsapp-btn i {
    font-size: 14px;
    color: white !important;
}

[dir="ltr"] .whatsapp-btn {
    margin-right: 0;
    margin-left: 10px;
}

.whatsapp-btn:hover {
    background: #1ebc57;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #f0f0f0;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 90px;
    width: auto;
    max-height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #6dbdc8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: #6dbdc8;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown fix */
.navbar .dropdown {
    position: relative;
}

.navbar .dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    /* تحت الزر بشوية */
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    min-width: 210px;
    z-index: 999;
    text-align: right;
    list-style: none;
    padding: 8px 0;
}

.navbar .dropdown-content li {
    padding: 10px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.navbar .dropdown-content li:last-child {
    border-bottom: none;
}

.navbar .dropdown-content li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.navbar .dropdown-content li a:hover {
    background: #f5f5f5;
    color: #6dbdc8;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6dbdc8;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-width: 220px;
    padding: 20px 0;
    z-index: 2000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: #6dbdc8;
    color: #fff;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 12px 20px;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
    border-radius: 7px;
    margin: 0 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 4px 0;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-content a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    background: #6dbdc8;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .social-links {
        gap: 10px;
    }

    .nav-container {
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
    }

    .whatsapp-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 101, 120, 0.92) 0%, rgba(109, 189, 200, 0.85) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb i {
    font-size: 0.8rem;
}

.about-hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease 0.4s both;
}

.about-hero-subtitle strong {
    color: #ffd700;
    font-weight: 800;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 80vh;
        min-height: 550px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

.about-section {
    padding: 70px 0 30px 0;
    background: var(--bg-primary);
}

.about-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.about-image img {
    max-width: 380px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--secondary);
    background: var(--bg-secondary);
}

.about-text {
    flex: 1;
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 2.1;
}

.about-text h2 {
    color: var(--secondary);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-text b {
    color: var(--primary);
}

@media (max-width: 950px) {
    .about-container {
        flex-direction: column-reverse;
        gap: 23px;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #0b6578 0%, #6dbdc8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.achievements-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievements-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 700px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
    transform: rotate(360deg);
    background: #ffd700;
}

.achievement-icon i {
    font-size: 2.5rem;
    color: #6dbdc8;
    transition: color 0.4s ease;
}

.achievement-card:hover .achievement-icon i {
    color: white;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.achievement-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-card {
        padding: 30px 20px;
    }

    .achievement-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: #f6fbfc;
    margin: 0;
    padding: 0;
    color: #224056;
}

.article-header {
    position: relative;
    max-width: 900px;
    margin: 40px auto 60px auto;
    padding: 0 15px;
    text-align: center;
}

.article-header img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background: #000;
    /* إضافة خلفية داكنة في حال كانت الصورة لا تغطي المساحة بالكامل */
    border-radius: 25px;
    box-shadow: 0 10px 38px rgba(109, 189, 200, 0.18);
    margin-bottom: 25px;
}

.article-header-text h1 {
    font-size: 2.7rem;
    font-weight: 900;
    color: #0b6578;
    margin-bottom: 8px;
}

.article-date {
    font-size: 1rem;
    color: #6dbdc8;
    font-weight: 700;
}

.article-content {
    max-width: 880px;
    margin: 0 auto 70px auto;
    padding: 0 20px;
    line-height: 2;
    font-size: 1.15rem;
    color: #4496a6;
}

.related-articles {
    max-width: 950px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.related-articles h2 {
    color: #0b6578;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 800;
    margin-bottom: 40px;
}

.related-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.related-item {
    background: white;
    border-radius: 20px;
    width: 290px;
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.15);
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.related-item:hover {
    box-shadow: 0 15px 48px rgba(109, 189, 200, 0.3);
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #cee4e7;
}

.related-item a {
    display: block;
    text-decoration: none;
    padding: 18px 16px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #224056;
    transition: color 0.3s;
}

.related-item a:hover {
    color: #6dbdc8;
}

@media (max-width: 768px) {
    .article-header img {
        height: 230px;
    }

    .article-header-text h1 {
        font-size: 1.9rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .related-list {
        gap: 23px;
    }

    .related-item {
        width: 210px;
    }
}

@media (max-width: 480px) {
    .article-header img {
        height: 180px;
    }
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: #f6fbfc;
    margin: 0;
    padding: 0;
    color: #224056;
}

.articles-hero {
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    padding: 55px 20px 35px 20px;
    text-align: center;
    color: white;
}

.articles-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.articles-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.articles-section {
    padding: 45px 0 70px 0;
}

.articles-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.article-card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.4s ease;
}

.article-card:hover {
    box-shadow: 0 15px 50px rgba(109, 189, 200, 0.25);
    transform: translateY(-7px);
}

.article-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-content {
    padding: 24px 28px 30px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #224056;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.6;
    margin-bottom: 23px;
    flex: 1;
}

.article-read-btn {
    font-weight: 700;
    color: #0b6578;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.article-read-btn:hover {
    color: #6dbdc8;
}

@media (max-width: 700px) {
    .articles-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .articles-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .articles-hero-title {
        font-size: 1.8rem;
    }

    .articles-hero-subtitle {
        font-size: 1rem;
    }
}

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 80px 0;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4496a6;
    max-width: 700px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
    border-color: #6dbdc8;
}

.award-card.featured {
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    grid-column: span 2;
}

.award-card.featured .award-icon {
    background: white;
}

.award-card.featured .award-icon i {
    color: #6dbdc8;
}

.award-card.featured h3,
.award-card.featured .award-desc {
    color: white;
}

.award-card.featured .award-year {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.award-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.award-badge i {
    font-size: 1.5rem;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.award-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.award-card:hover .award-icon {
    transform: rotateY(360deg);
}

.award-icon i {
    font-size: 2.5rem;
    color: white;
}

.award-card h3 {
    font-size: 1.5rem;
    color: #224056;
    margin-bottom: 12px;
    font-weight: 700;
}

.award-year {
    display: inline-block;
    background: rgba(109, 189, 200, 0.15);
    color: #6dbdc8;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.award-desc {
    font-size: 1.05rem;
    color: #4496a6;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .award-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .award-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .awards-section {
        padding: 60px 0;
    }

    .award-card {
        padding: 30px 20px;
    }

    .award-icon {
        width: 75px;
        height: 75px;
    }

    .award-icon i {
        font-size: 2rem;
    }
}

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5f7 100%);
    padding: 70px 0;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.awards-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6dbdc8 0%, #5aacb7 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.award-card:hover::before {
    transform: scaleY(1);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(109, 189, 200, 0.25);
    border-color: #6dbdc8;
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.3);
}

.award-card:hover .award-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.5);
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-info {
    flex: 1;
}

.award-info h3 {
    font-size: 1.4rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.award-year {
    font-size: 0.95rem;
    color: #6dbdc8;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(109, 189, 200, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.award-desc {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .awards-title {
        font-size: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .award-card {
        padding: 25px 20px;
    }

    .award-icon {
        width: 60px;
        height: 60px;
    }

    .award-icon i {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .award-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .award-icon {
        margin-bottom: 10px;
    }
}

/* Certifications Section */
.certifications-section {
    background: var(--bg-secondary);
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
}

.cert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cert-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cert-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cert-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid var(--border-color);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(109, 189, 200, 0.3);
    border-color: #6dbdc8;
}

.cert-card.highlight {
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
}

.cert-card.highlight h3,
.cert-card.highlight .cert-label,
.cert-card.highlight .cert-desc {
    color: white;
}

.cert-card.highlight .cert-icon {
    background: rgba(255, 255, 255, 0.2);
}

.cert-card.highlight .cert-icon i {
    color: white;
}

.cert-icon {
    width: 90px;
    height: 90px;
    background: #e0f7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    transform: rotate(360deg) scale(1.1);
}

.cert-icon i {
    font-size: 2.5rem;
    color: #6dbdc8;
}

.cert-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.cert-label {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.warranty-box {
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.warranty-box i {
    font-size: 4.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warranty-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.warranty-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .cert-title {
        font-size: 2rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .warranty-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .warranty-box i {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .cert-card {
        padding: 25px 20px;
    }

    .cert-icon {
        width: 70px;
        height: 70px;
    }

    .cert-icon i {
        font-size: 2rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 65px 0;
}

.contact-form-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.14);
}

.contact-form-title {
    text-align: center;
    font-size: 2.1rem;
    color: #0b6578;
    font-weight: 800;
    margin-bottom: 37px;
    padding-top: 38px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding-bottom: 38px;
}

.form-row {
    display: flex;
    gap: 19px;
}

.form-group {
    position: relative;
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 49px 16px 16px;
    border: 2px solid #e7ecee;
    border-radius: 12px;
    font-size: 1rem;
    color: #224056;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f7fcfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6dbdc8;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.12);
}

.form-group i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6dbdc8;
    font-size: 1.13rem;
    pointer-events: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    font-size: 1.11rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.3s ease;
    margin-top: 13px;
    box-shadow: 0 8px 25px rgba(109, 189, 200, 0.16);
}

.submit-btn:hover {
    background: #5aacb7;
    color: #ffd700;
    transform: translateY(-3px) scale(1.03);
}

@media (max-width: 660px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-title {
        font-size: 1.25rem;
    }

    .contact-form-container {
        padding: 0 7px;
    }

    .contact-form-section {
        padding: 40px 0;
    }
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 340px;
    background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1200&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 101, 120, 0.87) 0%, rgba(109, 189, 200, 0.73) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 0 15px;
}

.contact-hero-icon {
    background: #ffd700;
    color: #0b6578;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    font-size: 2.3rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.contact-hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-hero-subtitle {
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.7;
    color: #f7f7f7;
}

@media (max-width: 600px) {
    .contact-hero {
        height: 250px;
    }

    .contact-hero-title {
        font-size: 1.4rem;
    }

    .contact-hero-subtitle {
        font-size: 0.97rem;
    }

    .contact-hero-icon {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
        margin-bottom: 12px;
    }
}

/* Contact Info Section */
.contact-info-section {
    background: #f7fcfd;
    padding: 70px 0 40px 0;
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-title {
    text-align: center;
    color: #0b6578;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 38px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-info-box {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(109, 189, 200, 0.11);
    padding: 28px 25px;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid #e7ecee;
}

.contact-info-box:hover {
    box-shadow: 0 9px 32px rgba(109, 189, 200, 0.19);
    border-color: #6dbdc8;
    transform: translateY(-6px) scale(1.025);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-info-box h4 {
    margin: 0 0 5px 0;
    color: #224056;
    font-size: 1.08rem;
    font-weight: 700;
}

.contact-info-box p,
.contact-info-box a {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.9;
    margin: 0;
    text-decoration: none;
}

.contact-whatsapp {
    color: #25D366;
    font-weight: 700;
    transition: color 0.3s;
}

.contact-whatsapp:hover {
    color: #128C7E;
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    gap: 11px;
    margin-top: 7px;
}

.social-links-contact a {
    background: #eaf6f7;
    color: #6dbdc8;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: background 0.3s, color 0.3s;
}

.social-links-contact a:hover {
    background: #6dbdc8;
    color: white;
}

.ltr {
    direction: ltr;
    text-align: left;
}

@media (max-width: 700px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .contact-info-box {
        padding: 20px 15px;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 70px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #224056;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-desc {
    font-size: 1rem;
    color: #4496a6;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(109, 189, 200, 0.1);
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-text h4 {
    font-size: 1.1rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-text p {
    font-size: 1rem;
    color: #4496a6;
    margin: 5px 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: #6dbdc8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: #5aacb7;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #224056;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(109, 189, 200, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: #224056;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6dbdc8;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.15);
}

.form-group i {
    position: absolute;
    right: 18px;
    top: 17px;
    color: #6dbdc8;
    font-size: 1.1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(109, 189, 200, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(109, 189, 200, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {

    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }
}

/* CTA Section - Specific to About/Main pages */
.cta-section {
    background: linear-gradient(120deg, #6dbdc8 0%, #0b6578 100%) !important;
    color: #ffffff !important;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.cta-section::before {
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.07);
}

.cta-section::after {
    bottom: -80px;
    right: -120px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 42px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 40px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-main {
    background: #ffd700;
    color: #0b6578;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2);
}

.cta-main:hover {
    background: #ffe867;
    color: #224056;
    transform: translateY(-4px) scale(1.06);
}

.cta-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.15);
}

.cta-whatsapp:hover {
    background: #138A7E;
    color: #ffd700;
    transform: translateY(-4px) scale(1.06);
}

/* Responsive */
@media (max-width: 570px) {
    .cta-title {
        font-size: 1.35rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
        padding: 13px 0;
    }
}

/* FAQ Section */
.faq-section {
    background: #f7fcfd;
    padding: 70px 0 55px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 2.1rem;
    color: #0b6578;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(109, 189, 200, 0.11);
    transition: box-shadow 0.3s;
    border: 2px solid #e7ecee;
    overflow: hidden;
}

.faq-item.open,
.faq-item:has(.faq-answer.show) {
    box-shadow: 0 7px 24px rgba(109, 189, 200, 0.17);
    border-color: #6dbdc8;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 22px;
    color: #224056;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-item.open .faq-question,
.faq-question:focus {
    background: #eafafd;
}

.faq-question i {
    font-size: 1.02rem;
    color: #6dbdc8;
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 1rem;
    color: #4496a6;
    padding: 0 22px 17px 22px;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s, opacity 0.35s;
    line-height: 1.7;
}

.faq-answer.show {
    max-height: 350px;
    opacity: 1;
    padding-top: 2px;
}

/* Responsive */
@media (max-width: 600px) {
    .faq-title {
        font-size: 1.18rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 13px 10px;
    }

    .faq-answer {
        padding: 0 10px 13px 10px;
    }
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
}

.features-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 45px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 35px 25px;
    width: 310px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    box-shadow: 0 18px 50px rgba(109, 189, 200, 0.25);
    transform: translateY(-10px) scale(1.04);
    border-color: #6dbdc8;
}

.feature-card i {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #6dbdc8;
    background: white;
    border-radius: 50%;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover i {
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .features-list {
        gap: 18px;
    }

    .feature-card {
        width: 45vw;
        min-width: 260px;
    }
}

@media (max-width: 600px) {
    .features-list {
        flex-direction: column;
        gap: 14px;
    }

    .feature-card {
        width: 98%;
        margin: 0 auto;
    }

    .feature-card i {
        font-size: 2.5rem;
        padding: 20px;
    }
}

.main-footer {
    background: linear-gradient(135deg, #0b6578 70%, #6dbdc8 100%);
    color: #fff;
    padding: 0;
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    margin: 0 auto;
    padding: 55px 20px 35px 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo img {
    width: 110px;
    margin-bottom: 8px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fafafa;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #e0f7fa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-col p,
.footer-col a,
.footer-hours {
    font-size: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 11px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6f7;
    color: #6dbdc8;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.18rem;
    transition: background 0.3s, color 0.3s;
}

.footer-social-links a:hover {
    background: #6dbdc8;
    color: #fff;
}

.footer-hours {
    margin-top: 10px;
    color: #e0f7fa;
    font-size: 0.95rem;
}

.footer-bottom {
    background: #06445a;
    text-align: center;
    color: #b5e3ec;
    font-size: 1rem;
    padding: 18px 0 12px;
}

@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 40px 15px 25px 15px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footer-logo img {
        margin-right: auto;
        margin-left: auto;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    direction: rtl;
    /* لأجل العربية */
}

/* Top Bar */
.top-bar {
    background: #6dbdc8;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-phone i {
    color: #fff;
    font-size: 16px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 4px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-right: 10px;
    /* المسافة بين الرقم والزر */
}

.whatsapp-btn i {
    font-size: 14px;
    color: white !important;
}

[dir="ltr"] .whatsapp-btn {
    margin-right: 0;
    margin-left: 10px;
}

.whatsapp-btn:hover {
    background: #1ebc57;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #f0f0f0;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 90px;
    width: auto;
    max-height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #6dbdc8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: #6dbdc8;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown fix */
.navbar .dropdown {
    position: relative;
}

.navbar .dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    /* تحت الزر بشوية */
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    min-width: 210px;
    z-index: 999;
    text-align: right;
    list-style: none;
    padding: 8px 0;
}

.navbar .dropdown-content li {
    padding: 10px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.navbar .dropdown-content li:last-child {
    border-bottom: none;
}

.navbar .dropdown-content li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.navbar .dropdown-content li a:hover {
    background: #f5f5f5;
    color: #6dbdc8;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6dbdc8;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-width: 220px;
    padding: 20px 0;
    z-index: 2000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: #6dbdc8;
    color: #fff;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 12px 20px;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
    border-radius: 7px;
    margin: 0 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 4px 0;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-content a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    background: #6dbdc8;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .social-links {
        gap: 10px;
    }

    .nav-container {
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
    }

    .whatsapp-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 100vh;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 900px;
    width: 85%;
    padding: 45px 40px;
    background: rgba(15, 23, 42, 0.7);
    /* خلفية داكنة فاخرة شفافة */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out;
}

.hero-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent);
    /* الذهبي مكسيم */
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-text {
    color: #ffffff;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: #6dbdc8;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
    background: rgba(109, 189, 200, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.arrow {
    background: rgba(109, 189, 200, 0.95);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: #6dbdc8;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(109, 189, 200, 0.5);
}

.arrow:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 40px 35px;
        width: 88%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }

    .hero-text {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: 500px;
        overflow: visible;
    }

    .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        padding: 30px 20px;
        border-radius: 15px;
        z-index: 20;
    }

    .hero-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 12px;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: none;
        padding: 14px 30px;
        font-size: 15px;
    }

    .slider-arrows {
        padding: 0 12px;
        z-index: 25;
    }

    .arrow {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

    .slider-dots {
        bottom: 12px;
        padding: 10px 12px;
        gap: 10px;
        z-index: 25;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        height: 450px;
    }

    .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        max-width: 320px;
        padding: 25px 15px;
        z-index: 20;
    }

    .hero-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .hero-text {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .slider-arrows {
        z-index: 25;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-dots {
        bottom: 10px;
        padding: 8px 10px;
        gap: 8px;
        z-index: 25;
    }

    .dot {
        width: 9px;
        height: 9px;
    }
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-primary);
    padding: 70px 0;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.how-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px 20px;
    width: 320px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.15);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid #e0f7fa;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(109, 189, 200, 0.3);
    border-color: #6dbdc8;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.4);
}

.step-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin: 15px 0 20px 0;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #224056;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 1.05rem;
    color: #4496a6;
    line-height: 1.7;
}

.how-result {
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 35px rgba(109, 189, 200, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.result-icon {
    font-size: 4rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-text h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.result-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .steps-wrapper {
        gap: 20px;
    }

    .step-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .how-title {
        font-size: 2rem;
    }

    .how-subtitle {
        font-size: 1.05rem;
    }

    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 90%;
        max-width: 350px;
    }

    .how-result {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .result-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 25px 15px;
    }

    .step-card img {
        height: 150px;
    }
}

/* Innovation & Development Section */
.innovation-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 80px 0;
}

.innovation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4496a6;
    max-width: 700px;
    margin: 0 auto;
}

.innovation-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* Innovation Image */
.innovation-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(109, 189, 200, 0.2);
}

.innovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    min-height: 500px;
}

.image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.image-badge i {
    font-size: 1.5rem;
}

/* Innovation Details */
.innovation-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.innovation-intro h3 {
    font-size: 1.9rem;
    color: #224056;
    margin-bottom: 18px;
    font-weight: 700;
}

.innovation-intro p {
    font-size: 1.1rem;
    color: #4496a6;
    line-height: 1.9;
}

.innovation-intro strong {
    color: #6dbdc8;
    font-weight: 700;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.innovation-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.1);
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.2);
}

.item-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.3rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.item-content p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .innovation-image img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .innovation-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .innovation-section {
        padding: 60px 0;
    }

    .innovation-item {
        flex-direction: column;
        text-align: center;
    }

    .item-number {
        margin: 0 auto;
    }
}

/* public/css/instagram-feed.css */

.instagram-feed-section {
    padding: 60px 0;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.instagram-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    aspect-ratio: 1 / 1;
    /* شبه شكل إنستجرام */
}

.instagram-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .instagram-feed-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram Video Section */
.instagram-video {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #6dbdc8;
    border-radius: 2px;
}

.video-wrapper {
    max-width: 540px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-loader {
    text-align: center;
    display: none !important;
    cursor: pointer;
    padding: 60px 20px;
    transition: all 0.3s ease;
    margin-top: 5%;
}

.video-loader:hover {
    transform: scale(1.05);
}

.video-loader i {
    font-size: 80px;
    color: #6dbdc8;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.video-loader p {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.instagram-media {
    margin: 0 auto !important;
    max-width: 500px !important;
    min-width: 326px;
    width: 100% !important;
    border-radius: 10px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .instagram-video {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .video-wrapper {
        padding: 15px;
        min-height: 500px;
    }

    .video-loader i {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .video-wrapper {
        padding: 10px;
        min-height: 450px;
    }

    .instagram-media {
        min-width: 280px !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: #f0f8fa;
    color: #0b4659;
    overflow-x: hidden;
}

.landing-header {
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.landing-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.95;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 70px;
}

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0b6578;
    margin-bottom: 18px;
}

.intro-section p {
    font-size: 1.3rem;
    color: #4496a6;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-section {
    margin-bottom: 80px;
}

.gallery-section h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b6578;
    text-align: center;
    margin-bottom: 35px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.gallery img {
    border-radius: 25px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 12px 45px rgba(11, 101, 120, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(11, 101, 120, 0.35);
}

.feature-box {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.feature-icon i {
    font-size: 2.8rem;
    color: white;
}

.feature-box h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #0b6578;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1.2rem;
    color: #4496a6;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.video-section {
    margin-bottom: 60px;
}

.video-card {
    position: relative;
    padding-bottom: 125%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 12px 45px rgba(11, 101, 120, 0.2);
    background: white;
    max-width: 500px;
    margin: 0 auto;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 25px;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.15);
    margin-top: 80px;
}

.cta-section h3 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #0b6578;
    margin-bottom: 30px;
}

.landing-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 2.2rem;
}

.whatsapp-btn:hover {
    background: #1ebc57;
    transform: translateY(-8px);
    box-shadow: 0 22px 70px rgba(30, 188, 87, 0.6);
}

.landing-footer {
    background: #0b6578;
    color: white;
    text-align: center;
    padding: 25px 20px;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .landing-header h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .intro-section p {
        font-size: 1.1rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .landing-header h1 {
        font-size: 2.2rem;
    }

    .whatsapp-btn {
        padding: 18px 40px;
        font-size: 1.3rem;
    }

    .whatsapp-btn i {
        font-size: 1.8rem;
    }
}

/* Map Section */
.map-section {
    background: #f0f5f7;
    padding: 55px 0 38px 0;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.map-title {
    color: #0b6578;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.google-map-wrapper {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 5px 28px rgba(109, 189, 200, 0.13);
    background: #fff;
}

.google-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    border: none;
}

@media (max-width: 600px) {
    .google-map-wrapper iframe {
        min-height: 230px;
    }
}

/* Our Journey Section */
.our-story-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 80px 0;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4496a6;
    max-width: 700px;
    margin: 0 auto;
}

.story-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.story-intro h3 {
    font-size: 1.8rem;
    color: #224056;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-intro p {
    font-size: 1.1rem;
    color: #4496a6;
    line-height: 1.9;
    margin-bottom: 15px;
}

.story-intro strong {
    color: #6dbdc8;
    font-weight: 700;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 20px 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #6dbdc8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    width: 24px;
    height: 24px;
    left: -44px;
    background: #6dbdc8;
    box-shadow: 0 0 0 6px rgba(109, 189, 200, 0.2);
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.2);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #224056;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .story-intro h3 {
        font-size: 1.5rem;
    }

    .timeline {
        padding-left: 35px;
    }

    .timeline-item {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .our-story-section {
        padding: 60px 0;
    }

    .timeline-content {
        padding: 20px;
    }
}

/* Our Values Section */
.our-values-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 80px 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4496a6;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6dbdc8 0%, #5aacb7 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
    border-color: rgba(109, 189, 200, 0.3);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
    position: relative;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.4);
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #224056;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #4496a6;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .our-values-section {
        padding: 60px 0;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 75px;
        height: 75px;
    }

    .value-icon i {
        font-size: 2rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 70px 0;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.1);
    transition: all 0.4s ease;
    min-height: 150px;
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(109, 189, 200, 0.25);
    border-color: #6dbdc8;
}

.partner-card img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .partner-card {
        padding: 30px 20px;
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

body {
    background: #f9fcfd;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    color: #224056;
}

.product-section {
    padding: 55px 20px 70px 20px;
}

.product-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-image {
    flex: 1 1 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.14);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-details {
    flex: 1 1 400px;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b6578;
}

.product-price {
    font-size: 1.6rem;
    color: #6dbdc8;
    font-weight: 700;
    margin-bottom: 25px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
    color: #4496a6;
}

.order-methods {
    font-weight: 700;
}

.order-methods h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #224056;
}

.order-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

a.btn-call,
a.btn-whatsapp,
button.btn-add-to-cart {
    flex: 1 1 180px;
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    color: white;
    border: none;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 7px 25px rgba(11, 101, 120, 0.3);
    transition: background 0.3s, transform 0.2s ease;
}

a.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 7px 25px rgba(37, 211, 102, 0.3);
}

a.btn-call:hover {
    background: #094054;
    transform: translateY(-3px);
}

a.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

button.btn-add-to-cart {
    background: #FFD700;
    color: #0b6578;
    box-shadow: 0 7px 25px rgba(255, 215, 0, 0.3);
    border: none;
}

button.btn-add-to-cart:hover {
    background: #e6c200;
    transform: translateY(-3px);
}

.cart-message {
    margin-top: 20px;
    color: #128c7e;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (max-width: 720px) {
    .product-container {
        flex-direction: column;
    }

    .product-image,
    .product-details {
        flex: 1 1 100%;
    }

    .order-buttons {
        flex-direction: column;
    }

    a.btn-call,
    a.btn-whatsapp,
    button.btn-add-to-cart {
        flex: none;
        width: 100%;
    }
}

.products-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 70px 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 40px;
}

.myProductSwiper {
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s;
    min-width: 330px;
    max-width: 340px;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s;
    border-radius: 25px 25px 0 0;
}

.product-card:hover img {
    transform: scale(1.12);
}

.product-info {
    padding: 25px 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    color: #224056;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-info p {
    font-size: 1rem;
    color: #4496a6;
    margin-bottom: 20px;
    min-height: 45px;
}

.product-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #6dbdc8;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.3);
    transition: all .3s;
    text-decoration: none;
}

.product-btn:hover {
    background: #5aacb7;
}

.swiper-pagination-bullet-active {
    background: #6dbdc8 !important;
}

:root {
    --primary: #0b6578;
    --secondary: #6dbdc8;
    --accent: #FFD700;
    --dark: #1e293b;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #084c5a 100%);
}

body {
    background-color: #fafafa;
    color: var(--dark);
}

/* --- Hero Section الضخم --- */
.service-hero {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    overflow: hidden;
}

.hero-overlay,
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 101, 120, 0.7), rgba(11, 101, 120, 0.4));
    z-index: 1;
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tag {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #ffffff !important;
}

.service-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 1;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff !important;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-lg {
    background: var(--accent);
    color: var(--primary);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-outline-lg {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-outline-lg:hover {
    background: #ffffff;
    color: #0b6578;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--white);
    padding: 50px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    /* زيادة الظل */
    border-radius: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    border: 1px solid #f0f0f0;
    /* إضافة إطار خفيف */
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item p {
    color: #64748b;
    font-weight: 600;
}

/* --- Content Layout --- */
.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* --- Features Grid (Big Cards) --- */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* ✅ تعديل الكروت لتظهر بوضوح بدون هوفر */
.feature-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.4s ease;

    /* ✅ إضافة إطار وظل دائم */
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    position: relative;
    overflow: hidden;
    text-align: center;
    /* توسيط المحتوى */
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 30px;
    /* توسيط الأيقونة */
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--dark);
}

.feature-box p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* --- Content Split (Text + Image) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 800;
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.check-list li i {
    color: var(--secondary);
    background: rgba(109, 189, 200, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #0b6578 0%, #084c5a 100%);
    border-radius: 40px;
    padding: 100px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 101, 120, 0.35);
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(109, 189, 200, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.cta-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 1.35rem;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .service-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
        /* تعطيل البارالاكس على الموبايل للأداء */
    }

    .service-hero h1 {
        font-size: 2.2rem !important;
        /* تصغير العنوان للموبايل */
        line-height: 1.3;
    }

    .service-hero p {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
    }

    .stats-bar {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary-lg,
    .btn-outline-lg {
        width: 100%;
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 70px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 189, 200, 0.9) 0%, rgba(90, 172, 183, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.service-card:hover .service-overlay i {
    transform: scale(1);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #224056;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.service-features li {
    font-size: 0.95rem;
    color: #4496a6;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #6dbdc8;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .service-content h3 {
        font-size: 1.3rem;
    }
}

body {
    background: #f6fbfc;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
}

/* Shop Hero Section */
.shop-hero {
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    padding: 50px 0 25px 0;
    text-align: center;
    color: white;
}

.shop-hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 13px;
}

.shop-hero-desc {
    font-size: 1.22rem;
    opacity: 0.92;
}

/* Shop Grid */
.shop-section {
    padding: 50px 0;
}

.shop-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 33px;
}

.product-card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 7px 32px rgba(109, 189, 200, 0.10);
    padding: 23px 22px 18px 22px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 13px 42px rgba(109, 189, 200, 0.20);
    border-color: #6dbdc8;
    transform: translateY(-7px) scale(1.03);
}

.product-image {
    width: 100%;
    height: 180px;
    margin-bottom: 13px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #f6fbfc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #0b6578;
    padding: 6px 18px;
    font-size: 0.93rem;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.11);
}

.product-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #224056;
    margin-bottom: 9px;
}

.product-desc {
    font-size: 1rem;
    color: #4496a6;
    margin-bottom: 23px;
    flex: 1;
    line-height: 1.6;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 19px;
}

.product-price {
    font-size: 1.19rem;
    font-weight: 800;
    color: #0b6578;
    background: #eafafd;
    border-radius: 15px;
    padding: 7px 20px;
    letter-spacing: 1px;
}

.shop-btn {
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    border: none;
    border-radius: 22px;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 31px;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 6px 18px rgba(109, 189, 200, 0.15);
}

.shop-btn:hover {
    background: #0b6578;
    color: #ffd700;
    transform: translateY(-4px) scale(1.06);
}

@media (max-width: 700px) {
    .shop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-image {
        height: 130px;
    }
}

@media (max-width: 450px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 15px 8px;
    }

    .product-title {
        font-size: 1rem;
    }

    .shop-hero-title {
        font-size: 1.1rem;
    }
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 80px 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4496a6;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 189, 200, 0.95) 0%, rgba(90, 172, 183, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: white;
    color: #6dbdc8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card:hover .team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card:hover .team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social a:hover {
    background: #6dbdc8;
    color: white;
    transform: translateY(-5px);
}

.team-info {
    padding: 30px 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-position {
    font-size: 1rem;
    color: #6dbdc8;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 0.95rem;
    color: #4496a6;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-info {
        padding: 25px 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 70px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
    border-color: #6dbdc8;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(109, 189, 200, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: rgba(109, 189, 200, 0.3);
    transform: scale(1.1);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #4496a6;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(109, 189, 200, 0.1);
}

.customer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6dbdc8;
}

.customer-info h4 {
    font-size: 1.15rem;
    color: #224056;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.customer-info p {
    font-size: 0.9rem;
    color: #6dbdc8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
}

:root {
    /* ✅ ألوان الوضع النهاري (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --card-bg: #ffffff;
    --border-color: #eeeeee;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1a1a1a;
    --input-bg: #ffffff;
}

/* ✅ ألوان الوضع الليلي (Dark Mode) */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #0b1120;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --card-bg: #1e293b;
    --border-color: #334155;
    --nav-bg: rgba(15, 23, 42, 0.95);
    --footer-bg: #020617;
    --input-bg: #1e293b;
}

/* تطبيق الألوان الأساسية */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* تحسينات عامة للمكونات */
.navbar {
    background-color: var(--nav-bg) !important;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    color: var(--text-primary) !important;
}

.feature-box,
.stat-item,
.card,
.product-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

.feature-box h3,
.section-header h2 {
    color: var(--text-primary) !important;
}

.feature-box p,
.section-header p {
    color: var(--text-secondary) !important;
}

.main-footer {
    background-color: var(--footer-bg) !important;
}

/* زر تبديل الثيم */
.theme-switch {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.theme-switch:hover {
    transform: rotate(15deg);
}

.theme-switch .fa-sun {
    display: none;
    color: #ffca28;
}

.theme-switch .fa-moon {
    display: block;
    color: #6dbdc8;
}

[data-theme="dark"] .theme-switch .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-switch .fa-moon {
    display: none;
}

/* Vision & Mission Section */
.vision-mission-section {
    background: linear-gradient(135deg, #eafafd 0%, #d3f4fa 100%);
    padding: 80px 0;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.vision-mission-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.15);
    border-top: 5px solid #6dbdc8;
    transition: all 0.4s ease;
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.3);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    transform: rotate(360deg) scale(1.1);
}

.vm-icon i {
    font-size: 2.2rem;
    color: white;
}

.vm-card h4 {
    font-size: 1.8rem;
    color: #224056;
    margin-bottom: 18px;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.1rem;
    color: #4496a6;
    line-height: 1.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-mission-boxes {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .vm-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .vision-mission-section {
        padding: 60px 0;
    }

    .vm-card {
        padding: 30px 20px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
    }

    .vm-icon i {
        font-size: 2rem;
    }

    .vm-card h4 {
        font-size: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
    animation: shake 1s infinite;
}

.whatsapp-text {
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Pulse Animation */
@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* Shake Animation */
@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .whatsapp-float i {
        font-size: 1.7rem;
    }

    .whatsapp-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float i {
        font-size: 1.8rem;
    }
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 70px 0;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.why-us-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.why-us-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(109, 189, 200, 0.2);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.why-us-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.why-us-badge i {
    font-size: 1.3rem;
}

.why-us-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-point {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-point:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 35px rgba(109, 189, 200, 0.2);
    border-left-color: #6dbdc8;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-point:hover .point-icon {
    transform: rotate(10deg) scale(1.1);
}

.point-icon i {
    font-size: 1.8rem;
    color: white;
}

.point-text h3 {
    font-size: 1.3rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.point-text p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-us-title {
        font-size: 2rem;
    }

    .why-point {
        padding: 20px;
        gap: 15px;
    }

    .point-icon {
        width: 50px;
        height: 50px;
    }

    .point-icon i {
        font-size: 1.5rem;
    }

    .point-text h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .why-point {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-us-badge {
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}


/* GCC Branches Section */
.gcc-branches {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.gcc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.gcc-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 15px;
    width: 150px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gcc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(109, 189, 200, 0.2);
    border-color: #6dbdc8;
}

.gcc-flag-img {
    width: 65px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gcc-name-ar {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.gcc-name-en {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .gcc-grid {
        gap: 15px;
    }

    .gcc-card {
        width: 130px;
        padding: 20px 10px;
    }

    .gcc-flag-img {
        width: 50px;
    }
}

/* ?? Global Dark Mode Force Overrides ?? */
[data-theme="dark"] section,
[data-theme="dark"] .section-padding,
[data-theme="dark"] .how-it-works,
[data-theme="dark"] .certifications-section,
[data-theme="dark"] .partners-section,
[data-theme="dark"] .awards-section,
[data-theme="dark"] .gcc-branches-section,
[data-theme="dark"] .contact-static-section {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .cert-card,
[data-theme="dark"] .partner-card,
[data-theme="dark"] .award-card,
[data-theme="dark"] .branch-card {
    background: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] li {
    color: var(--text-secondary) !important;
}

/* 🔥 GLOBAL DARK MODE SUCCESS 🔥 */
[data-theme="dark"] section,
[data-theme="dark"] .gcc-branches,
[data-theme="dark"] .how-it-works,
[data-theme="dark"] .features-section,
[data-theme="dark"] .certifications-section,
[data-theme="dark"] .partners-section,
[data-theme="dark"] .awards-section,
[data-theme="dark"] .gcc-branches {
    background-color: var(--bg-primary) !important;
    background-image: none !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .cert-card,
[data-theme="dark"] .gcc-card,
[data-theme="dark"] .award-card,
[data-theme="dark"] .stat-item {
    background-color: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .feature-box h3,
[data-theme="dark"] .step-card h3,
[data-theme="dark"] .cert-card h3,
[data-theme="dark"] .gcc-name-ar,
[data-theme="dark"] .gcc-name {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .feature-box p,
[data-theme="dark"] .step-card p,
[data-theme="dark"] .cert-desc,
[data-theme="dark"] .gcc-subtitle,
[data-theme="dark"] .gcc-name-en {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] h2 {
    color: var(--secondary) !important;
}

/* 🔥 ULTIMATE GLOBAL DARK MODE SUCCESS 🔥 */
/* 1. Sections & Backgrounds */
[data-theme="dark"] section,
[data-theme="dark"] .gcc-branches,
[data-theme="dark"] .how-it-works,
[data-theme="dark"] .features-section,
[data-theme="dark"] .certifications-section,
[data-theme="dark"] .partners-section,
[data-theme="dark"] .awards-section,
[data-theme="dark"] .instagram-feed-section,
[data-theme="dark"] .contact-form-static,
[data-theme="dark"] .section-padding {
    background-color: var(--bg-primary) !important;
    background-image: none !important;
    color: var(--text-primary) !important;
}

/* 2. Cards & Containers */
/* تحسين صناديق المميزات لتكون "منورة" دايماً وبارزة */
.feature-box {
    padding: 50px 40px;
    border-radius: 30px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.2);
    border-color: var(--secondary);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--primary) !important; /* خليناه منور وشغال دايماً */
    color: #ffffff !important;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(11, 101, 120, 0.3);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary) !important;
    box-shadow: 0 12px 35px rgba(109, 189, 200, 0.5);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* 2. Cards & Containers - Dark Mode */
.stats-bar { 
    transition: all 0.4s ease;
}

[data-theme="dark"] .stats-bar {
    background-color: var(--card-bg) !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .feature-box,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .cert-card,
[data-theme="dark"] .gcc-card,
[data-theme="dark"] .award-card,
[data-theme="dark"] .stat-item,
[data-theme="dark"] .partner-card,
[data-theme="dark"] .video-item,
[data-theme="dark"] .instagram-video-card,
[data-theme="dark"] .innovation-item,
[data-theme="dark"] .innovation-card,
[data-theme="dark"] .achievement-card {
    background-color: var(--card-bg) !important;
    background: var(--card-bg) !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

/* 3. Typography & Titles - Dark Mode */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] .section-title,
[data-theme="dark"] .gcc-name-ar,
[data-theme="dark"] .award-info h3,
[data-theme="dark"] .feature-box h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] div,
[data-theme="dark"] li,
[data-theme="dark"] a:not(.btn) {
    color: #ffffff !important;
}

/* 4. Overriding White Inline/External Backgrounds - Dark Mode */
[data-theme="dark"] .bg-white,
[data-theme="dark"] .white-bg {
    background-color: var(--bg-primary) !important;
}

/* 5. Icon Fixes - Dark Mode */
[data-theme="dark"] .cert-icon,
[data-theme="dark"] .award-icon,
[data-theme="dark"] .feature-icon {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(109, 189, 200, 0.2);
}

/* Force icon color inside the circles */
[data-theme="dark"] .cert-icon i,
[data-theme="dark"] .award-icon i,
[data-theme="dark"] .feature-icon i {
    color: var(--primary) !important;
}

/* 6. Top Bar & Footer - Dark Mode */
[data-theme="dark"] .top-bar,
[data-theme="dark"] .main-footer {
    background: #020617 !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .top-bar i,
[data-theme="dark"] .top-bar span,
[data-theme="dark"] .top-bar a:not(.whatsapp-btn) {
    color: var(--text-secondary) !important;
}

/* About Page Dark Mode Overrides */
[data-theme="dark"] .about-hero-overlay {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
}

[data-theme="dark"] .stat-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Contact Page Dark Mode Overrides */
[data-theme="dark"] .contact-info-box {
    background-color: var(--card-bg) !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
}

[data-theme="dark"] .contact-info-box h4 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .contact-info-box p,
[data-theme="dark"] .contact-info-box a:not(.contact-whatsapp) {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .social-links-contact a {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--secondary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .social-links-contact a:hover {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}

[data-theme="dark"] .our-story-section,
[data-theme="dark"] .vision-mission-section,
[data-theme="dark"] .our-values-section,
[data-theme="dark"] .innovation-section,
[data-theme="dark"] .achievements-section,
[data-theme="dark"] .cta-section {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .timeline::before {
    background: var(--accent) !important;
    opacity: 0.3 !important;
}

[data-theme="dark"] .timeline-dot {
    background: var(--card-bg) !important;
    border-color: var(--accent) !important;
}

[data-theme="dark"] .timeline-year,
[data-theme="dark"] .vm-icon,
[data-theme="dark"] .value-icon,
[data-theme="dark"] .innovation-icon,
[data-theme="dark"] .item-number {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .vm-card h4,
[data-theme="dark"] .timeline-content h4,
[data-theme="dark"] .value-card h3,
[data-theme="dark"] .innovation-intro h3,
[data-theme="dark"] .item-content h4,
[data-theme="dark"] .innovation-card h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .story-intro p,
[data-theme="dark"] .vm-card p,
[data-theme="dark"] .timeline-content p,
[data-theme="dark"] .value-card p,
[data-theme="dark"] .innovation-intro p,
[data-theme="dark"] .item-content p,
[data-theme="dark"] .innovation-card p {
    color: var(--text-secondary) !important;
}