/* ===============================================
   ADDITIONAL STYLES FOR NEW PAGES
   קובץ נוסף - לא מחליף את styles.css!
   =============================================== */

/* ===========================
   Page Header
   =========================== */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===========================
   Quick Stats
   =========================== */
.quick-stats {
    padding: 60px 0;
    background: #1a1a1a;
}

.quick-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-stats .stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.quick-stats .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.quick-stats .stat-card i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.quick-stats .stat-card h3 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin: 10px 0;
}

/* ===========================
   Project Section
   =========================== */
.project-section {
    padding: 80px 0;
}

.project-section.alt-bg {
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.section-header h2 i {
    margin-left: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.project-info h3 {
    font-size: 1.8rem;
    color: #D4AF37;
    margin: 30px 0 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li i {
    color: #D4AF37;
    font-size: 1.2rem;
}

/* Info Boxes */
.info-box, .highlight-box, .cta-box {
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.info-box {
    background: rgba(212, 175, 55, 0.1);
    border-right: 4px solid #D4AF37;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid #D4AF37;
}

.highlight-box h4 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 8px 0;
}

.cta-box {
    background: #1a1a1a;
    text-align: center;
}

.cta-box h4 {
    color: #D4AF37;
    margin-bottom: 20px;
}

/* ===========================
   Gallery Grid Mini
   =========================== */
.project-gallery-preview h3 {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.gallery-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.gallery-grid-mini .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-grid-mini .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-mini .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-grid-mini .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-grid-mini .gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-grid-mini .overlay i {
    color: #D4AF37;
    font-size: 2rem;
}

/* ===========================
   Service Types
   =========================== */
.services-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.service-type {
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-type h4 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.service-type h4 i {
    margin-left: 10px;
}

/* ===========================
   Form Styling
   =========================== */
.form-group label {
    display: block;
    color: #cccccc;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(0, 0, 0, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===========================
   Contact Grid
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.filter-buttons {
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* ===========================
   Gallery Grid
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
    .project-details-grid,
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .major-clients-grid,
    .reasons-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-card {
        flex-direction: column;
        text-align: center;
    }
    
    .company-contacts {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .quick-stats .stats-grid,
    .services-types,
    .clients-showcase,
    .clients-grid,
    .all-clients-grid,
    .clients-list-grid,
    .major-clients-grid,
    .reasons-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}
