/* ===== smart-film.css ===== */
/* Smart Film service page – same structure as smart-mirror but tailored */

.intro {
    background: var(--white);
}
.intro-text h2 {
    margin-bottom: 1rem;
}
.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.intro-text .btn-gold {
    margin-top: 0.5rem;
}
.intro-image img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.intro-image img:hover {
    transform: scale(1.02);
}

.features {
    background: var(--light-gray);
}
.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.benefits {
    background: var(--white);
}
.benefit-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    transition: var(--transition);
}
.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.gallery {
    background: var(--light-gray);
}
.gallery-grid {
    max-width: 800px;
    margin: 0 auto;
}
.gallery-main {
    margin-bottom: 1rem;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.gallery-thumbnails img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    border: 2px solid transparent;
}
.gallery-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}
.gallery-thumbnails img.active {
    opacity: 1;
    border-color: var(--gold);
}

.specifications {
    background: var(--white);
}
.specs-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.specs-table table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}
.specs-table th {
    background: rgba(10, 38, 71, 0.05);
    font-weight: 600;
    width: 40%;
    color: var(--deep-blue);
}
.specs-table td {
    color: var(--text-light);
}
.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.process {
    background: var(--light-gray);
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--deep-blue);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.step h4 {
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-thumbnails img {
        width: 70px;
        height: 60px;
    }
    .specs-table th,
    .specs-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .intro .grid-2 {
        gap: 2rem;
    }
    .intro-image {
        order: -1;
    }
}