:root {
    --primary-color: #0056b3;
    --secondary-color: #ffcc00;
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #fff;
}
header {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.animated-icon i {
    font-size: 24px;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.brand-name {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: var(--transition);
}

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

.call-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    background: #003d80;
    transform: scale(1.05);
}
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/bg.png') no-repeat center center/cover;
    filter: blur(3px);
    z-index: -1;
    transform: scale(1.1);
    animation: zoomBackground 20s infinite alternate;
}

@keyframes zoomBackground {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-primary { background: var(--primary-color); color: white; border: 2px solid var(--primary-color); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }

.btn-primary:hover { background: white; color: var(--primary-color); }
.btn-outline:hover { background: white; color: var(--text-color); }
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: -100%; 
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        background: white;
        flex-direction: column;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        text-align: center;
        transition: var(--transition);
    }

    .nav-links.active {
        top: 100px; 
    }

    .hero h1 { font-size: 2rem; }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;  
}

.about-image-container {
    flex: 1;
    position: relative;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
    transition: var(--transition);
}

.main-about-img:hover {
    transform: scale(1.02) rotate(1deg);
}
.image-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--primary-color);
    opacity: 0.1;
    filter: blur(50px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorph 10s infinite alternate;
    z-index: 1;
}

@keyframes blobMorph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--primary-color);
    font-size: 24px;
    z-index: 3;
    animation: floatUpDown 4s infinite ease-in-out;
}

.icon-1 { top: 10%; right: 0; animation-delay: 0s; }
.icon-2 { bottom: 20%; left: -20px; animation-delay: 1s; }
.icon-3 { top: 50%; right: -30px; animation-delay: 2s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.about-text-content {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.sub-title {
    color: #555;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-right: 4px solid var(--secondary-color);
    padding-right: 15px;
}

.about-p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-item i {
    display: block;
    font-size: 25px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item span {
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
}

.feature-item:hover i {
    color: white;
}
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .sub-title {
        border-right: none;
        border-bottom: 3px solid var(--secondary-color);
        display: inline-block;
        padding-bottom: 5px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .section-title { font-size: 2rem; }
    .floating-icon { width: 45px; height: 45px; font-size: 18px; }
}
.services-ultra {
    padding: 120px 0;
    background: radial-gradient(circle at center, #0a192f 0%, #020c1b 100%); 
    position: relative;
    overflow: hidden;
    color: white;
}
.bg-shape {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    opacity: 0.1;
    filter: blur(80px);
    animation: moveShape 15s infinite alternate ease-in-out;
}

@keyframes moveShape {
    to { transform: translate(-100px, 100px) rotate(90deg); }
}

.ultra-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.text-flash {
    color: #00d2ff;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    position: relative;
}

.ultra-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
}
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.ultra-card {
    perspective: 1000px; 
}

.card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-front {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 35px;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s ease;
}
.ac-theme::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%); z-index: -1; }
.electric-theme::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%); z-index: -1; }
.plumbing-theme::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%); z-index: -1; }

.ultra-card:hover .card-front {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    border-color: #00d2ff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    margin-bottom: 30px;
    transition: 0.5s;
    color: #00d2ff;
}

.ultra-card:hover .card-icon-wrap {
    background: #00d2ff;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.card-front h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.card-front p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ultra-list {
    list-style: none;
    margin-bottom: 30px;
}

.ultra-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
    font-weight: 600;
}

.ultra-list li i {
    color: #00d2ff;
}

.card-footer {
    font-weight: 700;
    color: #00d2ff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.ultra-card:hover .card-footer {
    gap: 20px;
}
@media (max-width: 768px) {
    .ultra-title { font-size: 2.2rem; }
    .card-front { padding: 40px 25px; }
}
.card-footer-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 15px;
    border: 1px solid transparent;
    cursor: pointer;
}

.card-footer-btn i {
    font-size: 1.2rem;
}
.ac-btn {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border-color: rgba(0, 210, 255, 0.3);
}
.ultra-card:hover .ac-btn {
    background: #00d2ff;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.4);
}
.electric-btn {
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    border-color: rgba(255, 204, 0, 0.3);
}
.ultra-card:hover .electric-btn {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.4);
}
.plumbing-btn {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}
.ultra-card:hover .plumbing-btn {
    background: #00ff88;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.4);
}

.ultra-card:hover .card-footer-btn i {
    animation: phoneShake 0.5s infinite;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg) scale(1.2); }
    25% { transform: rotate(15deg) scale(1.2); }
    75% { transform: rotate(-15deg) scale(1.2); }
}
.card-footer-btn:active {
    transform: scale(0.95);
}
.why-us-new {
    padding: 100px 0;
    background-color: #fcfdfe; 
    background-image: radial-gradient(#0056b305 2px, transparent 2px); 
    background-size: 30px 30px;
}

.why-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
}

.blue-text { color: #0056b3; }

.main-p {
    color: #777;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 15px auto;
}

.why-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #f0f0f0;
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: #0056b3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.why-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333;
}

.why-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}
.why-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-color: #0056b355;
}

.why-item:hover .why-icon-circle {
    background: #0056b3;
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.active-item {
    border-bottom: 5px solid #ffcc00;
}
.floating-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}
@media (max-width: 768px) {
    .main-title { font-size: 2rem; }
}
.nav-links a.active-nav {
    color: #0056b3 !important;
    position: relative;
}

.nav-links a.active-nav::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffcc00;
    border-radius: 10px;
}
.contact-section {
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.contact-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px); 
    transform: scale(1.1);
    z-index: -2;
}

.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: -1;
}

.contact-container {
    position: relative;
    z-index: 10; 
}

.contact-flex-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; 
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    color: white;
}

.accent { color: #00d2ff; }

.c-title, .f-title { font-size: 2.2rem; margin-bottom: 20px; font-weight: 900; }
.c-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.c-link-item:hover { background: rgba(255,255,255,0.15); transform: scale(1.03); }

.c-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; }
.phone-icon { background: #0072ff; }
.whatsapp-icon { background: #25d366; }
.c-form input, .c-form select, .c-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    font-family: 'Cairo';
    outline: none;
}

.c-submit {
    width: 100%;
    padding: 18px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-card { padding: 30px 20px; }
    .c-title { font-size: 1.8rem; }
}
.main-footer {
    background: #020c1b; 
    color: #fff;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #00d2ff; 
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: #ffcc00; 
}

.footer-logo { font-size: 2rem; font-weight: 900; margin-bottom: 15px; }
.footer-logo span { color: #00d2ff; }

.footer-col p { color: #94a3b8; line-height: 1.8; font-size: 0.95rem; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}
.footer-links li a:hover { color: #fff; transform: translateX(-5px); display: inline-block; }

.contact-info p { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.contact-info i { color: #00d2ff; }

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%; color: #fff; text-decoration: none; transition: 0.3s;
}
.social-icons a:hover { background: #00d2ff; transform: translateY(-5px); }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p { color: #64748b; font-size: 0.9rem; margin-bottom: 5px; }

.dev-credits a {
    color: #00d2ff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.dev-credits a:hover { color: #ffcc00; text-decoration: underline; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { right: 50%; transform: translateX(50%); }
    .contact-info p { justify-content: center; }
    .social-icons { justify-content: center; }
}
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .menu-toggle { display: block; z-index: 1001; } 
    .nav-links {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%); 
        width: 85%;
        max-width: 350px;
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        text-align: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, -50%); 
    }

    .nav-links li a {
        font-size: 1.3rem;
        display: block;
        padding: 10px;
        color: #333;
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 100px; 
        left: 50%;
        transform: translateX(-50%) translateY(-20px); 
        width: 90%;
        max-width: 350px;
        background: white;
        flex-direction: column;
        padding: 30px 10px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        text-align: center;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0); 
    }
    header {
        z-index: 1000;
    }
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}
.call-btn-float {
    background: #0072ff;
}
.whatsapp-btn-float {
    background: #25d366;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    z-index: -1;
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
.intercom-theme::before { 
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; 
    background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%); z-index: -1; 
}
.intercom-theme .card-icon-wrap { color: #9b59b6; }
.ultra-card:hover .intercom-theme { border-color: #9b59b6; }
.ultra-card:hover .intercom-theme .card-icon-wrap { background: #9b59b6; color: #fff; }

.intercom-btn { 
    background: rgba(155, 89, 182, 0.1); color: #9b59b6; border-color: rgba(155, 89, 182, 0.3); 
}
.ultra-card:hover .intercom-btn { 
    background: #9b59b6; color: #fff; box-shadow: 0 10px 20px rgba(155, 89, 182, 0.4); 
}
.dashcam-theme::before { 
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; 
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%); z-index: -1; 
}
.dashcam-theme .card-icon-wrap { color: #e74c3c; }
.ultra-card:hover .dashcam-theme { border-color: #e74c3c; }
.ultra-card:hover .dashcam-theme .card-icon-wrap { background: #e74c3c; color: #fff; }

.dashcam-btn { 
    background: rgba(231, 76, 60, 0.1); color: #e74c3c; border-color: rgba(231, 76, 60, 0.3); 
}
.ultra-card:hover .dashcam-btn { 
    background: #e74c3c; color: #fff; box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4); 
}
.intercom-theme .ultra-list li i { color: #9b59b6; }
.dashcam-theme .ultra-list li i { color: #e74c3c; }