/* ===== SERVICES PAGE SPECIFIC STYLES ===== */
.page-hero {
    padding: 100px 20px 60px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-content { max-width: 900px; margin: 0 auto; }
.page-hero-content .main-name { font-size: 3.5rem; margin-bottom: 20px; }
.page-hero-content .role { font-size: 1.3rem; color: #0ff; opacity: 0.9; }
.hero-decoration {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ff, #f0f, #0ff, transparent);
    margin: 30px auto 0;
    animation: expandWidth 1.5s ease forwards;
}
@keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to { width: 150px; opacity: 1; }
}

.services-section {
    padding: 40px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
}
.service-card:hover::before { left: 100%; }
.service-card:hover {
    transform: translateY(-8px);
    border-color: #0ff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid #0ff;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.05) rotate(360deg);
}
.service-icon i { font-size: 2.2rem; color: #0ff; }

.service-card h3 {
    font-size: 1.7rem;
    color: #0ff;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #0ff;
    padding-left: 15px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-list li {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
    transition: all 0.2s ease;
}
.service-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #0ff;
    font-size: 0.8rem;
}
.service-list li:hover {
    color: #0ff;
    transform: translateX(5px);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.service-tags span {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0ff;
    transition: all 0.2s;
}
.service-tags span:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.other-services-section { margin-top: 60px; padding: 20px; }
.other-services-box {
    background: rgba(0, 255, 255, 0.04);
    border: 2px dashed #0ff;
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.other-services-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.other-services-box:hover::before { opacity: 1; }
.other-services-icon { font-size: 4rem; color: #0ff; margin-bottom: 20px; }
.other-services-box h2 { color: #0ff; font-size: 2.2rem; margin-bottom: 15px; }
.other-services-subtitle { color: #e0e0e0; font-size: 1.1rem; margin-bottom: 30px; }

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 40px 0;
}
.other-service-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s;
}
.other-service-item:hover {
    transform: translateY(-4px);
    border-color: #0ff;
    background: rgba(0, 255, 255, 0.1);
}
.other-service-item i { font-size: 1.3rem; color: #0ff; width: 30px; }
.other-service-item span { color: #e0e0e0; font-size: 0.95rem; text-align: left; }

.other-services-contact { margin-top: 30px; }
.contact-prompt { color: #e0e0e0; font-size: 1.1rem; margin-bottom: 25px; }
.contact-prompt i { color: #0ff; margin-right: 8px; animation: pointRight 1.2s infinite; }
@keyframes pointRight {
    0%,100%{ transform: translateX(0); }
    50%{ transform: translateX(6px); }
}
.other-services-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #0ff;
    color: #0ff;
    font-size: 1.1rem;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}
.other-services-btn:hover {
    background: #0ff;
    color: #000;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.03), rgba(0, 255, 255, 0.05));
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}
.cta-content h2 { font-size: 2.2rem; color: #0ff; margin-bottom: 15px; }
.cta-content p { font-size: 1.1rem; margin-bottom: 30px; }
.cta-button {
    background: transparent;
    border: 2px solid #0ff;
    color: #0ff;
    padding: 14px 42px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.cta-button:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
}

/* ----- FIX: WhatsApp button positioned higher to avoid overlap with back-to-top ----- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;      /* Was 30px – moved up to leave space for back-to-top */
    right: 30px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99;
    transition: 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

/* Back-to-top stays at bottom:30px (from global style.css) */
/* But we ensure it has higher z-index to be clickable above */
.back-to-top {
    z-index: 100 !important; /* Ensure it's above WhatsApp if needed */
}

/* Light Mode Overrides */
body.light .service-card { background: rgba(255,255,255,0.4); border-color: rgba(0,0,255,0.2); }
body.light .service-list li { color: #1a1a1a; }
body.light .service-card h3 { color: #0066ff; border-left-color: #0066ff; }
body.light .service-icon { border-color: #0066ff; }
body.light .service-icon i { color: #0066ff; }
body.light .service-tags span { color: #0066ff; border-color: rgba(0,102,255,0.3); background: rgba(0,102,255,0.05); }
body.light .other-services-box { border-color: #0066ff; background: rgba(0,102,255,0.03); }
body.light .other-services-box h2 { color: #0066ff; }
body.light .other-service-item span { color: #1a1a1a; }
body.light .other-service-item i { color: #0066ff; }
body.light .other-services-btn { border-color: #0066ff; color: #0066ff; }
body.light .other-services-btn:hover { background: #0066ff; color: #fff; }
body.light .cta-content h2 { color: #0066ff; }
body.light .cta-button { border-color: #0066ff; color: #0066ff; }
body.light .cta-button:hover { background: #0066ff; color: #fff; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero { padding: 60px 20px 40px; }
    .page-hero-content .main-name { font-size: 2.5rem; }
    .page-hero-content .role { font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .service-card { padding: 28px 20px; }
    .service-card h3 { font-size: 1.4rem; }
    .other-services-box { padding: 30px 20px; }
    .other-services-box h2 { font-size: 1.6rem; }
    .other-services-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 1.6rem; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.5rem; bottom: 80px; right: 20px; }
    .back-to-top { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
    .service-icon { width: 60px; height: 60px; }
    .service-icon i { font-size: 1.6rem; }
    .service-list li { font-size: 0.85rem; }
}