/**
 * Page-specific styles: index, about, cctv-services, rnd-services, multimedia-services.
 * Moved from internal <style> blocks so external CSS applies consistently.
 * Image paths are relative to this file (assets/css/) -> ../images/
 */

/* ========== INDEX.PHP – Hero & CTA ========== */
.hero__image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    background-image: url('../images/ok.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__particles,
.hero__gradient,
.hero__mesh {
    position: relative;
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content-wrapper {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 2rem 1rem;
}

.hero__content {
    background: transparent;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__title-highlight {
    display: block;
    margin-top: 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, rgb(243, 141, 8), rgb(179, 143, 27));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    height: 4px;
    background: linear-gradient(135deg, #667eea, rgb(151, 129, 28));
    width: 100px;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero__trust {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__trust-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero__trust-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.trust-metric__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, rgb(204, 154, 17));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.trust-metric__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-metric__number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.trust-metric__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.learning-spotlight .spotlight__title { color: #1e293b !important; }
.learning-spotlight .spotlight__description { color: #64748b !important; }
.learning-spotlight .spotlight-metric__number { color: #1e293b !important; }
.learning-spotlight .spotlight-metric__label { color: #64748b !important; }
.learning-spotlight .section__badge { color: #1e293b !important; background: rgba(255, 255, 255, 0.9) !important; }

.cta.section--primary {
    position: relative;
    background-image: url('../images/connect.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cta.section--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta.section--primary .container {
    position: relative;
    z-index: 2;
}

.cta__content {
    background: transparent;
    padding: 2rem 1rem;
    text-align: center;
}

.cta__title {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta__description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__actions .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ========== INDEX & CTA – Mobile ========== */
@media (max-width: 768px) {
    .hero__image-bg { opacity: 0.5; }
    .hero__content { padding: 1.5rem 1rem; margin-bottom: 1.5rem; }
    .hero__title { font-size: 2.5rem; }
    .hero__subtitle { font-size: 1.1rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 280px; }
    .hero__trust-metrics { flex-direction: column; gap: 1rem; }
    .trust-metric { justify-content: center; }
    .cta.section--primary { min-height: 50vh; background-attachment: scroll; }
    .cta__content { padding: 1.5rem 1rem; }
    .cta__title { font-size: 2rem; }
    .cta__description { font-size: 1.1rem; }
    .cta__actions { flex-direction: column; align-items: center; gap: var(--space-3, 1rem); }
    .cta__actions .btn { width: 100%; max-width: 280px; }
    .spotlight__container { flex-direction: column; }
    .spotlight__visual { margin-top: 2rem; }
    .data-showcase__container { padding: 2rem 1rem; }
    .data-metrics { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .data-metric { padding: 1.5rem 1rem; }
    .services-compact__grid,
    .nav-hub__grid,
    .partners__grid,
    .why-choose__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero--about .hero__title { font-size: 2.5rem; }
    .hero--about .hero__subtitle { font-size: 1.1rem; }
    .story__content { flex-direction: column; gap: 2rem; }
    .story__stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .stat-highlight { min-width: 120px; }
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
    .value-item { padding: 1.5rem; }
    .cta { min-height: 40vh; background-attachment: scroll; }
    .cta__content { padding: 1.5rem 1rem; }
    .cta__title { font-size: 2rem; }
    .cta__description { font-size: 1.1rem; }
    .cta__actions { flex-direction: column; align-items: center; gap: 1rem; }
    .cta__actions .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
    .hero__content-wrapper { padding: 1rem 0.5rem; }
    .hero__content { padding: 1.5rem 1rem; }
    .hero__title { font-size: 2rem; }
    .hero__trust { padding: 1.5rem 1rem; }
    .data-showcase__title { font-size: 1.75rem; }
    .data-showcase__subtitle { font-size: 0.95rem; }
    .spotlight__title { font-size: 1.75rem; }
    .spotlight__description { font-size: 0.95rem; }
    .section__title { font-size: 1.75rem; }
    .section__subtitle { font-size: 0.95rem; }
    .cta__title { font-size: 1.75rem; }
    .cta__description { font-size: 1rem; }
    .data-metrics { grid-template-columns: 1fr; }
    .data-metric__number { font-size: 2rem; }
    .data-metric__label { font-size: 0.9rem; }
    .hero--about .hero__title { font-size: 2rem; }
    .story__stats { flex-direction: column; gap: 1rem; }
    .stat-highlight { width: 100%; }
    .cta__title { font-size: 1.75rem; }
    .cta__description { font-size: 1rem; }
}

/* ========== ABOUT.PHP – CTA ========== */
.cta {
    position: relative;
    background-image: url('../images/connect.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta__actions .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ========== CCTV-SERVICES.PHP ========== */
.hero--cctv {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero--cctv::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero--cctv .container { position: relative; z-index: 2; }

.hero--cctv .hero__content {
    background: transparent;
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero--cctv .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero--cctv .hero__title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero--cctv .hero__subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero--cctv .hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero--cctv__stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero--cctv__stats .stat {
    text-align: center;
    background: rgba(245, 200, 75, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    backdrop-filter: blur(10px);
}

.hero--cctv__stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F59E0B;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero--cctv__stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.camera-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.camera-type-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.camera-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
    border-color: #F59E0B;
}

.camera-type-card__image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.camera-type-card__image img { width: 100%; height: 100%; object-fit: cover; }

.camera-type-card__content { padding: 1.5rem; }

.camera-type-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.camera-type-card__description { color: #64748b; line-height: 1.6; margin-bottom: 1rem; }

.camera-type-card__features { list-style: none; padding: 0; margin: 0; }

.camera-type-card__features li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.camera-type-card__features li::before {
    content: '✓';
    color: #F59E0B;
    font-weight: bold;
    font-size: 1.2rem;
}

.installation-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.installation-gallery .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.installation-gallery .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.installation-gallery .gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.installation-gallery .gallery-item__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.installation-gallery .gallery-item:hover .gallery-item__overlay { transform: translateY(0); }

.gallery-item__title { font-weight: 600; margin-bottom: 0.5rem; }

.monitoring-dashboard {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.dashboard-preview {
    background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-card__label { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; margin-bottom: 0.5rem; }

.dashboard-card__value { color: #F59E0B; font-size: 1.5rem; font-weight: 700; }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
}

.solution-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.solution-card__content { padding: 2rem; }

.solution-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.solution-card__description { color: #64748b; line-height: 1.7; margin-bottom: 1.5rem; }

.solution-card__features { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }

.solution-card__features li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-card__features li::before {
    content: '✓';
    color: #F59E0B;
    font-weight: bold;
    font-size: 1.1rem;
}

.tech-features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 0;
    margin-top: 2rem;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tech-feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: stretch;
    min-height: 280px;
}

.tech-feature-card:hover {
    transform: translateY(-8px);
    border-color: #F59E0B;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
}

.tech-feature-card__visual {
    flex: 0 0 200px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tech-feature-card__visual::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.tech-feature-card__icon-wrapper {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.tech-feature-card:hover .tech-feature-card__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.tech-feature-card__icon { font-size: 3.5rem; color: white; }

.tech-feature-card__content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-feature-card__title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #F59E0B, transparent);
}

.tech-feature-card__description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tech-feature-card__specs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: auto; }

.tech-feature-card__spec {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.process-timeline { position: relative; padding: 2rem 0; margin-top: 3rem; }

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #F59E0B, #D97706);
    transform: translateX(-50%);
}

.process-step { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }

.process-step:nth-child(even) { flex-direction: row-reverse; }

.process-step__content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.process-step__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.process-step__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.process-step__description { color: #64748b; line-height: 1.7; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
    border-color: #F59E0B;
}

.pricing-card--featured {
    border-color: #F59E0B;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card__title { font-size: 1.75rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; }

.pricing-card__price { font-size: 2.5rem; font-weight: 800; color: #F59E0B; margin: 1rem 0; }

.pricing-card__price span { font-size: 1rem; color: #64748b; font-weight: 500; }

.pricing-card__features { list-style: none; padding: 0; margin: 2rem 0; }

.pricing-card__features li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card__features li:last-child { border-bottom: none; }

.pricing-card__features li::before {
    content: '✓';
    color: #F59E0B;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .tech-features-grid { grid-template-columns: 1fr; }
    .tech-feature-card { flex-direction: column; min-height: auto; }
    .tech-feature-card__visual { flex: 0 0 180px; width: 100%; }
    .tech-feature-card__icon-wrapper { width: 100px; height: 100px; }
    .tech-feature-card__icon { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero--cctv .hero__title { font-size: 2.5rem; }
    .hero--cctv__stats { flex-direction: column; gap: 1rem; }
    .process-timeline::before { left: 30px; }
    .process-step { flex-direction: row !important; padding-left: 4rem; }
    .process-step__number { left: 30px; transform: translateX(-50%); }
    .process-step__content { margin: 0; }
    .camera-types-grid,
    .solutions-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    .tech-feature-card__content { padding: 1.5rem; }
    .tech-feature-card__title { font-size: 1.25rem; }
}

/* ========== RND-SERVICES.PHP ========== */
.hero--rnd {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero--rnd::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero--rnd .container { position: relative; z-index: 2; }

.hero--rnd .hero__content { background: transparent; padding: 2rem 1rem; color: white; }

.hero--rnd .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 200, 75, 0.2);
    color: #F59E0B;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 200, 75, 0.3);
}

.hero--rnd .hero__title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero--rnd .hero__subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero--rnd .hero__actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

.hero--rnd__stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero--rnd__stats .stat {
    text-align: center;
    background: rgba(245, 200, 75, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
}

.hero--rnd__stats .stat-number { font-size: 2.5rem; font-weight: 800; color: #F59E0B; display: block; margin-bottom: 0.5rem; }

.hero--rnd__stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.research-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.research-area-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.research-area-card:hover {
    transform: translateY(-8px);
    border-color: #F59E0B;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
}

.research-area-card__image {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.research-area-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.research-area-card:hover .research-area-card__image img { transform: scale(1.1); }

.research-area-card__content { padding: 2.5rem; }

.research-area-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.research-area-card__title { font-size: 1.75rem; font-weight: 700; color: #1e293b; margin-bottom: 1rem; }

.research-area-card__description { color: #64748b; line-height: 1.7; margin-bottom: 1.5rem; }

.research-area-card__features { list-style: none; padding: 0; margin: 0; }

.research-area-card__features li { padding: 0.5rem 0; color: #475569; display: flex; align-items: center; gap: 0.75rem; }

.research-area-card__features li::before { content: '✓'; color: #F59E0B; font-weight: bold; font-size: 1.1rem; }

.innovation-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.innovation-gallery .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    transition: transform 0.3s ease;
}

.innovation-gallery .gallery-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.innovation-gallery .gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.innovation-gallery .gallery-item__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
}

.innovation-gallery .gallery-item__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.research-process-timeline { position: relative; padding: 2rem 0; margin-top: 3rem; }

.research-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #F59E0B, #D97706);
    transform: translateX(-50%);
}

.research-process-step { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }

.research-process-step:nth-child(even) { flex-direction: row-reverse; }

.research-process-step__content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.research-process-step__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.research-process-step__title { font-size: 1.5rem; font-weight: 700; color: #1e293b; margin-bottom: 1rem; }

.research-process-step__description { color: #64748b; line-height: 1.6; }

.publications-list { display: grid; gap: 1.5rem; margin-top: 3rem; }

.publication-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #F59E0B;
    transition: all 0.3s ease;
}

.publication-item:hover { transform: translateX(5px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }

.publication-item__type {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.publication-item__title { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; }

.publication-item__authors { color: #64748b; font-size: 0.875rem; margin-bottom: 0.5rem; }

.publication-item__link {
    color: #F59E0B;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.publication-item__link:hover { color: #D97706; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
}

.partner-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-card:hover img { filter: grayscale(0%); opacity: 1; }

.success-story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-story-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.success-story-card__content { padding: 2rem; }

.success-story-card__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-item { text-align: center; background: #f8fafc; padding: 1rem; border-radius: 8px; }

.metric-value { font-size: 1.5rem; font-weight: bold; color: #F59E0B; display: block; margin-bottom: 0.25rem; }

.metric-label { font-size: 0.875rem; color: #64748b; }

@media (max-width: 768px) {
    .hero--rnd .hero__title { font-size: 2.5rem; }
    .hero--rnd .hero__subtitle { font-size: 1.1rem; }
    .hero--rnd__stats { gap: 1rem; }
    .research-areas-grid { grid-template-columns: 1fr; }
    .research-process-timeline::before { left: 30px; }
    .research-process-step { flex-direction: column !important; align-items: flex-start; }
    .research-process-step__number { left: 30px; transform: translateX(0); }
    .research-process-step__content { margin-left: 4rem; margin-right: 0; }
    .innovation-gallery { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== MULTIMEDIA-SERVICES.PHP ========== */
.hero--multimedia {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero--multimedia::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero--multimedia .container { position: relative; z-index: 2; }

.hero--multimedia .hero__content { background: transparent; padding: 2rem 1rem; color: white; }

.hero--multimedia .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 200, 75, 0.2);
    color: #F59E0B;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 200, 75, 0.3);
}

.hero--multimedia .hero__title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero--multimedia .hero__subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero--multimedia .hero__actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

.hero--multimedia__stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero--multimedia__stats .stat {
    text-align: center;
    background: rgba(245, 200, 75, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
}

.hero--multimedia__stats .stat-number { font-size: 2.5rem; font-weight: 800; color: #F59E0B; display: block; margin-bottom: 0.5rem; }

.hero--multimedia__stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-gallery .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-gallery .gallery-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.portfolio-gallery .gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.portfolio-gallery .gallery-item__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-gallery .gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__play-button {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.portfolio-gallery .gallery-item:hover .gallery-item__play-button { transform: scale(1.1); }

.gallery-item__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(245, 158, 11, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-type-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-type-card:hover { transform: translateY(-5px); border-color: #F59E0B; box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2); }

.service-type-card__image { height: 120px; overflow: hidden; position: relative; }

.service-type-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }

.service-type-card:hover .service-type-card__image img { transform: scale(1.05); }

.service-type-card__content { padding: 1.5rem; }

.service-type-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-type-card__title { font-size: 1.375rem; font-weight: 700; color: #1e293b; margin-bottom: 0.75rem; }

.service-type-card__description { color: #64748b; line-height: 1.6; margin-bottom: 1rem; font-size: 0.9rem; }

.service-type-card__features { list-style: none; padding: 0; margin: 0; }

.service-type-card__features li { padding: 0.35rem 0; color: #475569; display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }

.service-type-card__features li::before { content: '✓'; color: #F59E0B; font-weight: bold; font-size: 0.9rem; flex-shrink: 0; }

.video-showcase {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
    padding: 3rem;
}

.video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-player-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.video-categories { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.video-category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-category-btn:hover,
.video-category-btn.active { background: #F59E0B; border-color: #F59E0B; color: white; }

.production-process-timeline { position: relative; padding: 2rem 0; margin-top: 3rem; }

.production-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #F59E0B, #D97706);
    transform: translateX(-50%);
}

.production-process-step { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }

.production-process-step:nth-child(even) { flex-direction: row-reverse; }

.production-process-step__content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.production-process-step__image { width: 200px; height: 150px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }

.production-process-step__image img { width: 100%; height: 100%; object-fit: cover; }

.production-process-step__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.production-process-step__title { font-size: 1.5rem; font-weight: 700; color: #1e293b; margin-bottom: 1rem; }

.production-process-step__description { color: #64748b; line-height: 1.6; }

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.equipment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.equipment-card__image { height: 200px; overflow: hidden; }

.equipment-card__image img { width: 100%; height: 100%; object-fit: cover; }

.equipment-card__content { padding: 1.5rem; text-align: center; }

.equipment-card__name { font-size: 1.125rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; }

.equipment-card__specs { color: #64748b; font-size: 0.875rem; }

.client-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-work-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-work-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.client-work-card__image { height: 250px; overflow: hidden; }

.client-work-card__image img { width: 100%; height: 100%; object-fit: cover; }

.client-work-card__content { padding: 1.5rem; }

.client-work-card__client { color: #F59E0B; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; }

.client-work-card__title { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin-bottom: 0.75rem; }

.client-work-card__description { color: #64748b; line-height: 1.6; font-size: 0.875rem; margin-bottom: 1rem; }

.client-work-card__testimonial {
    padding: 1rem;
    background: #f8fafc;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
    font-style: italic;
    color: #475569;
    font-size: 0.875rem;
}

.pricing-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-package-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2); }

.pricing-package-card.featured { border-color: #F59E0B; transform: scale(1.05); }

.pricing-package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F59E0B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-package-card__header {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-package-card__title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }

.pricing-package-card__price { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }

.pricing-package-card__price span { font-size: 1rem; opacity: 0.9; }

.pricing-package-card__content { padding: 2rem; }

.pricing-package-card__features { list-style: none; padding: 0; margin: 0 0 2rem 0; }

.pricing-package-card__features li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-package-card__features li:last-child { border-bottom: none; }

.pricing-package-card__features li::before { content: '✓'; color: #F59E0B; font-weight: bold; font-size: 1.1rem; }

.multimedia-services .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

.team-member-card__photo { width: 100%; height: 300px; overflow: hidden; }

.team-member-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.team-member-card__content { padding: 1.5rem; }

.team-member-card__name { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; }

.team-member-card__role { color: #F59E0B; font-weight: 600; margin-bottom: 1rem; }

.team-member-card__expertise { color: #64748b; font-size: 0.875rem; margin-bottom: 1rem; }

.team-member-card__social { display: flex; gap: 0.5rem; justify-content: center; }

.team-member-card__social a {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.team-member-card__social a:hover { background: #F59E0B; color: white; }

@media (max-width: 768px) {
    .hero--multimedia .hero__title { font-size: 2.5rem; }
    .hero--multimedia .hero__subtitle { font-size: 1.1rem; }
    .hero--multimedia__stats { gap: 1rem; }
    .portfolio-gallery { grid-template-columns: repeat(2, 1fr); }
    .service-types-grid { grid-template-columns: 1fr; }
    .production-process-timeline::before { left: 30px; }
    .production-process-step { flex-direction: column !important; align-items: flex-start; }
    .production-process-step__number { left: 30px; transform: translateX(0); }
    .production-process-step__content { margin-left: 4rem; margin-right: 0; }
    .production-process-step__image { width: 100%; margin-bottom: 1rem; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .client-work-grid { grid-template-columns: 1fr; }
    .pricing-packages-grid { grid-template-columns: 1fr; }
    .pricing-package-card.featured { transform: scale(1); }
    .multimedia-services .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .portfolio-gallery { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: 1fr; }
    .multimedia-services .team-grid { grid-template-columns: 1fr; }
}

/* ========== MULTIMEDIA – Quote Request Modal ========== */
#quoteRequestModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    overflow-y: auto;
    padding: 2rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#quoteRequestModal.active,
#quoteRequestModal.show {
    display: block !important;
    opacity: 1 !important;
}

.quote-modal-content {
    background: white;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #64748b;
    transition: all 0.3s ease;
    z-index: 10;
}

.quote-modal-close:hover {
    background: #e2e8f0 !important;
    color: #1a202c !important;
    transform: rotate(90deg);
}

#quoteRequestForm input:focus,
#quoteRequestForm textarea:focus,
#quoteRequestForm select:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 200, 75, 0.1);
}

#quoteRequestForm input,
#quoteRequestForm textarea,
#quoteRequestForm select { box-sizing: border-box; }

@media (max-width: 768px) {
    #quoteRequestModal { padding: 1rem 0.5rem !important; }
    .quote-modal-content { margin: 1rem auto !important; max-width: calc(100% - 2rem) !important; max-height: 95vh !important; }
    .quote-modal-content > div { padding: 1.5rem !important; }
}

/* ========== LEARNING HUB & PARTNERSHIP – Hero content text black ========== */
.hero--learning .hero__badge,
.hero--learning .hero__badge span,
.hero--learning .hero__badge i,
.hero--learning .hero__title,
.hero--learning .hero__subtitle {
    color: #1e293b !important;
    text-shadow: none;
}

.hero--learning .hero__subtitle {
    color: #475569 !important;
}

.hero--learning .hero__badge {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 41, 59, 0.15);
}

.hero--partnership .hero__badge,
.hero--partnership .hero__badge span,
.hero--partnership .hero__badge i,
.hero--partnership .hero__title,
.hero--partnership .hero__subtitle {
    color: #1e293b !important;
    text-shadow: none;
}

.hero--partnership .hero__subtitle {
    color: #475569 !important;
}

.hero--partnership .hero__badge {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 41, 59, 0.15);
}

/* ========== MODULES.PHP – Hero: image as background, foreground content (same structure & colors as cctv/services) ========== */
.hero--modules {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero--modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero--modules .container {
    position: relative;
    z-index: 2;
}

.hero--modules .hero__content {
    background: transparent;
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero--modules .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero--modules .hero__title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero--modules .hero__subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero--modules .hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero--modules {
        min-height: 70vh;
        background-attachment: scroll;
    }
    .hero--modules .hero__title {
        font-size: 2.5rem;
    }
    .hero--modules .hero__subtitle {
        font-size: 1.1rem;
    }
    .hero--modules .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero--modules .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
