.elementor-4565 .elementor-element.elementor-element-b982b40{--display:flex;}/* Start custom CSS for html, class: .elementor-element-30248dd *//* تصميم مختلف ومميز أكثر: أخضر/أزرق لدايكن (كفاءة بيئية)، رمادي/أزرق داكن لكارير (قوة صناعية). إضافات: slider للمقارنة، cards مع icons، progress bars للمقارنة، glow hover، أنيميشن rotate للأزرار. */
:root {
    --daikin-color: #27ae60; /* أخضر لدايكن (بيئي) */
    --carrier-color: #2c3e50; /* أزرق رمادي لكارير (قوي) */
    --neutral-color: #34495e; /* رمادي للعناوين */
    --bg-gradient: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%); /* خلفية خضراء فاتحة للطاقة */
    --card-bg: rgba(255,255,255,0.95);
    --glow: 0 0 20px rgba(39, 174, 96, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Cairo', sans-serif; 
    line-height: 1.8; 
    color: var(--neutral-color); 
    background: var(--bg-gradient);
}
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Breadcrumb */
.breadcrumb { 
    background: rgba(255,255,255,0.9); 
    padding: 15px 25px; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
}
.breadcrumb a { color: var(--carrier-color); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* Content Card - مع hover glow */
.content-card { 
    background: var(--card-bg);     margin: 30px 0; 
    border-radius: 20px; 
    padding: 40px; 
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 174, 96, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.content-card:hover {
    box-shadow: var(--glow);
    transform: translateY(-3px);
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--daikin-color), var(--carrier-color));
}h1 { 
    color: var(--neutral-color); 
    font-size: 3.2em; 
    text-align: center; 
    margin-bottom: 30px; 
    font-weight: 700;
    background: linear-gradient(45deg, var(--daikin-color), var(--carrier-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
h1::after {
    content: '';
    position: absolute;
    bottom: -10px;    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--daikin-color), var(--carrier-color));
    border-radius: 2px;
}

h2 { 
    color: var(--neutral-color); 
    font-size: 2.2em; 
    margin: 40px 0 20px; 
    position: relative;
    padding-right: 30px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
h2:hover {
    color: var(--daikin-color);
    text-shadow: 0 0 10px var(--glow);
}
h2::before {
    content: '❄️';
    margin-left: 15px;
    font-size: 1.2em;
    animation: cool 2s infinite;
}
@keyframes cool {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h3 { 
    color: var(--daikin-color); 
    font-size: 1.6em; 
    margin: 25px 0 15px; 
    display: flex;
    align-items: center;
}
h3::before {
    content: '▶️';
    margin-left: 10px;
    font-size: 0.8em;
}
h3.carrier {
    color: var(--carrier-color);
}

.keywords { display: none; } /* مخفية */

/* AdSense - مع hover glow */
.adsense { 
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8); 
    border: 3px dashed var(--daikin-color);     text-align: center; 
    padding: 50px 20px; 
    margin: 40px 0; 
    border-radius: 15px; 
    font-size: 1.2em; 
    color: #7f8c8d;
    position: relative;
    transition: all 0.3s ease;
}
.adsense:hover {
    box-shadow: var(--glow);
    border-color: var(--carrier-color);
}
.adsense::before {
    content: 'إعلان جوجل أدسينس';
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--daikin-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
}

/* Cards للمميزات - مميزة مع icons */
.feature-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.feature-card-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid var(--daikin-color);
}
.feature-card-item.carrier {
    border-left-color: var(--carrier-color);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}
.feature-card-item:hover {
    transform: rotate(1deg) scale(1.02);
    box-shadow: var(--glow);
}
.feature-card-item i {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--daikin-color);
}
.feature-card-item.carrier i {
    color: var(--carrier-color);
}
.feature-card-item h4 {
    color: var(--neutral-color);
    margin-bottom: 10px;
}

/* Tables - مع progress bars للمقارنة */
.comparison-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 30px 0; 
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
}
.comparison-table th { 
    background: linear-gradient(135deg, var(--daikin-color), var(--carrier-color)); 
    color: white; 
    padding: 18px; 
    font-weight: 600;
    text-align: center;
}
.comparison-table td { 
    padding: 15px; 
    border-bottom: 1px solid #ecf0f1; 
    text-align: center;
    transition: background 0.3s ease;
    position: relative;
}
.comparison-table tr:hover td { 
    background: #f0f8f0; 
}
.daikin-col { background: rgba(39, 174, 96, 0.1); }
.carrier-col { background: rgba(44, 62, 80, 0.1); }

/* Progress Bars للمقارنة - مميزة */
.progress-bar {
    width: 100%;
    height: 20px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}
.progress-fill {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
}
.daikin-fill {
    background: linear-gradient(90deg, var(--daikin-color), #2ecc71);
}
.carrier-fill {
    background: linear-gradient(90deg, var(--carrier-color), #34495e);
}

/* Slider للمقارنة - تفاعلي مميز */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px;
    box-sizing: border-box;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.slide.active {
    display: flex;
}
.slide.daikin {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(52, 152, 219, 0.1));
}
.slide.carrier {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.1), rgba(52, 73, 94, 0.1));
}
.slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: background 0.3s ease;
}
.nav-dot.active {
    background: var(--daikin-color);
}
.nav-dot:hover {
    transform: scale(1.2);
}

/* Lists مع icons */
ul { padding-right: 25px; margin: 15px 0; }
ul li { 
    margin: 8px 0; 
    position: relative; 
    padding-right: 25px;
    list-style: none;
}
ul li::before { 
    content: ' /* تم تصحيح هذا السطر */
    position: absolute; 
    right: -20px; 
    font-size: 1.1em;
}
ul.daikin-list li::before { content: '🌿'; color: var(--daikin-color); }
ul.carrier-list li::before { content: '⚡'; color: var(--carrier-color); }

/* Warning/Info Boxes */
.warning-box {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border: 2px solid var(--carrier-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    transition: all 0.3s ease;
}
.warning-box:hover {
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    transform: rotate(-1deg);
}
.warning-box::before {
    content: '⚠️';
    font-size: 1.5em;
    margin-left: 10px;
}

.info-box {
    background: linear-gradient(135deg, #e8f5e8, #d5f4e6);
    border: 2px solid var(--daikin-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    transition: all 0.3s ease;
}.info-box:hover {
    box-shadow: var(--glow);
    transform: rotate(1deg);
}
.info-box::before {
    content: '📌';
    font-size: 1.5em;
    margin-left: 10px;
}

/* FAQ مع أنيميشن rotate */
.faq-item { 
    background: #f0f8f0; 
    padding: 20px; 
    margin: 15px 0; 
    border-radius: 12px; 
    border-right: 5px solid var(--daikin-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.faq-item:hover { 
    background: #ffffff; 
    transform: rotate(0.5deg) translateX(-5px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
}
.faq-question { 
    color: var(--neutral-color); 
    font-weight: 700; 
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer { 
    color: #34495e; 
    line-height: 1.6;
    display: none;
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 300px; opacity: 1; }
}
.faq-item.active .faq-answer { display: block; }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Related Posts */
.related { 
    background: linear-gradient(135deg, #e8f5e8, #d5f4e6); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.related h3 { 
    color: var(--neutral-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.related ul { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    list-style: none; 
}
.related li a { 
    display: block; 
    padding: 15px; 
    background: white; 
    border-radius: 10px; 
    text-decoration: none; 
    color: var(--daikin-color); 
    font-weight: 600; 
    text-align: center;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.1);     transition: all 0.3s ease;
}
.related li a:hover { 
    transform: rotate(2deg) translateY(-3px); 
    color: var(--carrier-color); 
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.15);
}

/* Sections */
.sections { 
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8); 
    padding: 30px; 
    border-radius: 15px; 
    margin: 40px 0; 
}
.sections h3 { 
    color: var(--daikin-color); 
    text-align: center; 
    margin-bottom: 20px;
}
.sections ul { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    list-style: none; 
}
.sections li a { 
    padding: 12px 20px; 
    background: linear-gradient(45deg, var(--daikin-color), var(--carrier-color)); 
    color: white; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease;
}
.sections li a:hover { 
    transform: rotate(360deg) scale(1.05);
    box-shadow: var(--glow);
}

/* Keywords Box */
.keywords-box {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border: 2px dashed var(--daikin-color);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}
.keywords-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.keyword-tag {
    background: linear-gradient(45deg, var(--daikin-color), var(--carrier-color));
    color: white;    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.keyword-tag:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--glow);
}

/* Responsive Images مع glow */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
}
img:hover {
    box-shadow: var(--glow);
    transform: scale(1.05) rotate(1deg);
}

/* Expert Quote مع rotate */
.expert-quote {
    background-color: #f0f8f0;
    border-left: 5px solid var(--daikin-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.05);
    transition: all 0.3s ease;
}
.expert-quote:hover {    box-shadow: var(--glow);
    transform: rotate(-0.5deg);
}
.expert-quote p { margin-bottom: 5px; }
.expert-quote .expert-name { font-weight: bold; color: var(--carrier-color); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    .content-card { padding: 25px; }
    .comparison-table { font-size: 0.9em; }
    .related ul { grid-template-columns: 1fr; }
    .keywords-list { gap: 8px; }
    .keyword-tag { font-size: 0.8em; padding: 6px 12px; }
    .adsense { padding: 30px 10px; font-size: 1em; }
    .feature-card { grid-template-columns: 1fr; }
    .comparison-slider { height: 300px; }
}

/* CTA Buttons - مزدوج مع rotate */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--daikin-color), var(--carrier-color));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}
.cta-button:hover {    transform: rotate(360deg) translateY(-2px);
    box-shadow: var(--glow);
}
.cta-daikin { background: var(--daikin-color); }
.cta-carrier { background: var(--carrier-color); }/* End custom CSS */