/* Page-specific styles for voip-phone-systems.html (loaded after css/style.css) */

.page-hero {
            background: var(--primary);
            color: var(--white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

.page-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { font-size: 45px; font-weight: 900; margin-bottom: 12px; }

.page-hero h1 span { color: var(--secondary); }

.page-hero p { font-size: 19px; color: rgba(255,255,255,0.8); max-width: 600px; }

.page-hero .breadcrumb { font-size: 16px; color: rgba(255,255,255,0.5); margin-top: 8px; }

.page-hero .breadcrumb a { color: var(--secondary); transition: var(--transition); }

.page-hero .breadcrumb a:hover { color: var(--white); }

.service-details {
            padding: 80px 0;
            background: var(--white);
        }

.service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

.service-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

.service-text .label {
            display: inline-block;
            color: var(--secondary);
            font-size: 14.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

.service-text h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

.service-text h2 span {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.service-text p {
            color: var(--gray-600);
            margin-bottom: 16px;
            font-size: 18px;
        }

.service-text ul {
            margin-top: 12px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

.service-text ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: var(--gray-700);
        }

.service-text ul li i {
            color: var(--secondary);
            font-size: 16px;
        }

.features-section {
            padding: 60px 0;
            background: var(--gray-50);
        }

.features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

.feature-card {
            background: var(--white);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            text-align: center;
        }

.feature-card:hover {
            border-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

.feature-card .icon {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 12px;
            display: block;
        }

.feature-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

.feature-card p { font-size: 16px; color: var(--gray-500); }

.solution-tabs {
            padding: 60px 0;
            background: var(--white);
        }

.tab-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

.tab-card {
            background: var(--gray-50);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }

.tab-card:hover {
            border-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

.tab-card .icon {
            font-size: 31.5px;
            color: var(--secondary);
            margin-bottom: 8px;
            display: block;
        }

.tab-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

.tab-card p { font-size: 16px; color: var(--gray-500); margin-bottom: 12px; }

.tab-card ul li {
            font-size: 14.5px;
            color: var(--gray-600);
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.tab-card ul li i { color: var(--secondary); font-size: 13.5px; }

.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }

.cta-section h2 span { color: var(--secondary); }

.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 24px; }

.cta-section .btn-white {
            background: var(--white);
            color: var(--primary);
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

.cta-section .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .service-grid { grid-template-columns: 1fr; }
    .service-text ul { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .tab-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION CONTRAST FIX
   (cta-section p/.btn-white were styled for a dark background,
   but the section itself was left on the default white
   background, making the paragraph text unreadable)
   ============================================================ */
.cta-section { background: var(--primary); text-align: center; }
.cta-section h2 { color: var(--white); }
