/* New Jersey Page Specific Styles */

/* Theme Utilities */
.nj-text-muted {
    color: var(--text-muted) !important;
}

/* Hero Section */
.nj-hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.nj-hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.nj-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.nj-hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.nj-hero-title {
    font-family: 'Gallient', 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
}

.nj-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.nj-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Trusted Decorator Section */
.nj-trusted-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.nj-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.nj-service-item {
    position: relative;
    height: 240px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nj-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.nj-service-item:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.nj-service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.nj-service-item h3 {
    font-family: 'Gallient', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
    position: relative;
    z-index: 2;
}

.nj-service-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Full Service Section */
.nj-fullservice-section {
    padding: 100px 0;
    background-color: var(--bg-surface-alt);
}

.nj-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.nj-feature-item {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.nj-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.nj-feature-icon {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.nj-feature-item h3 {
    font-family: 'Gallient', serif;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0;
}

/* Why Choose Section */
.nj-why-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.nj-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.nj-why-card {
    background: var(--bg-surface);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nj-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.nj-why-card h3 {
    font-family: 'Gallient', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.nj-why-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nj-hero-title {
        font-size: 2.5rem;
    }

    .nj-hero-subtitle {
        font-size: 1.2rem;
    }

    .nj-services-list {
        grid-template-columns: 1fr;
    }
}