/* PT Sinar Jaya Reklame - Page Specific & Layout Styles */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 75% 10%, rgba(6, 182, 212, 0.14) 0%, transparent 38%), radial-gradient(circle at 20% 75%, rgba(245, 158, 11, 0.12) 0%, var(--bg-main) 55%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-headline .highlight-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #f1f5f9;
}

.hero-visual-img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    opacity: 1;

    z-index: 1;

    transition: opacity 0.5s ease-in-out;
}

.hero-image-fade {
    opacity: 0;
}

.hero-floating-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

/* Feature Grid Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

.service-showcase {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #f7fbff 0%, #fffaf0 100%);
}

.service-showcase-header {
    max-width: 760px;
    margin: 0 auto 3.25rem;
    padding: 0 1rem;
}

.service-showcase-header .pill-badge {
    margin-bottom: 1rem;
}

.service-showcase-header .section-title {
    max-width: 680px;
    margin: 0 auto 1rem;
    font-size: clamp(2.2rem, 4.4vw, 3.65rem);
    line-height: 1.08;
}

.service-showcase-header .section-subtitle {
    max-width: 610px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.service-showcase .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.featured-service-card {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    box-shadow: 0 10px 28px rgba(25, 71, 117, .08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.featured-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.featured-service-image {
    display: block;
    aspect-ratio: 1.18;
    background-image: url('../assets/images/layanan-unggulan-grid.png');
    background-size: 300% 300%;
    background-repeat: no-repeat;
    background-position: 0% 0%;
}

.image-2 {
    background-position: 50% 0%;
}

.image-3 {
    background-position: 100% 0%;
}

.image-4 {
    background-position: 0% 50%;
}

.image-5 {
    background-position: 50% 50%;
}

.image-6 {
    background-position: 100% 50%;
}

.image-7 {
    background-position: 0% 100%;
}

.image-8 {
    background-position: 50% 100%;
}

.image-9 {
    background-position: 100% 100%;
}

.featured-service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: 1rem 1.1rem;
}

.featured-service-content b {
    font: 800 1.05rem var(--font-heading);
}

.featured-service-content small {
    color: var(--accent-gold);
    font-weight: 700;
    white-space: nowrap;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats Counter Banner */
.stats-banner {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    border-y: 1px solid var(--border-light);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Page Header Banner (for subpages) */
.page-banner {
    padding: 9rem 0 4rem 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.12) 0%, var(--bg-main) 70%);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.page-banner-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-listing {
    max-width: 760px;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
    font-weight: 600;
}

.product-overview {
    background: var(--bg-surface);
}

.product-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-overview-card {
    display: block;
    min-height: 185px;
    padding: 1.35rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-overview-card span {
    display: block;
    color: var(--text-primary);
    font: 800 1.2rem var(--font-heading);
    margin-bottom: .7rem;
}

.product-overview-card p {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 1rem;
}

.product-overview-card b {
    color: var(--accent-gold);
    font-size: .86rem;
}

.service-detail-section {
    background: var(--bg-surface-elevated);
}

.service-detail-list {
    display: grid;
    gap: .85rem;
}

.service-detail {
    scroll-margin-top: 100px;
    display: grid;
    grid-template-columns: 150px 48px 1fr auto;
    align-items: center;
    gap: 1.25rem;
    min-height: 145px;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
}

.service-detail::before {
    content: '';
    align-self: stretch;
    min-height: 120px;
    border-radius: var(--radius-sm);
    background-image: url('../assets/images/contoh-layanan-reklame.png');
    background-repeat: no-repeat;
    background-size: 400% 200%;
    background-position: 0% 0%;
}

.service-detail:nth-child(2)::before {
    background-position: 33.333% 0%;
}

.service-detail:nth-child(3)::before {
    background-position: 66.667% 0%;
}

.service-detail:nth-child(4)::before {
    background-position: 100% 0%;
}

.service-detail:nth-child(5)::before {
    background-position: 0% 100%;
}

.service-detail:nth-child(6)::before {
    background-position: 33.333% 100%;
}

.service-detail:nth-child(7)::before {
    background-position: 66.667% 100%;
}

.service-detail:nth-child(8)::before {
    background-position: 100% 100%;
}

.service-number {
    color: var(--accent-gold);
    font: 800 1.2rem var(--font-heading);
}

.service-detail h3 {
    font: 800 1.2rem var(--font-heading);
    margin-bottom: .3rem;
}

.service-detail p {
    color: var(--text-muted);
    font-size: .92rem;
}

@media (max-width: 900px) {
    .product-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-showcase .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-showcase .features-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 108px 1fr;
        gap: .85rem;
    }

    .service-detail::before {
        grid-row: span 2;
        min-height: 120px;
    }

    .service-number {
        display: none;
    }

    .service-detail .btn {
        grid-column: 2;
        justify-self: start;
    }
}

/* Product Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-surface-elevated);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Content pages */
.content-section {
    padding: 5.5rem 0;
}

.content-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-intro {
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.section-eyebrow {
    color: var(--accent-cyan);
    font-weight: 800;
    letter-spacing: .09em;
    font-size: .78rem;
    text-transform: uppercase;
    margin-bottom: .65rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-bottom: 1rem;
}

.section-copy {
    color: var(--text-secondary);
    max-width: 900px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.project-visual {
    min-height: 210px;
    padding: 1.5rem;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
}

.project-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .35), transparent);
}

.project-visual span {
    position: relative;
    font: 800 clamp(1.6rem, 3vw, 2.5rem)/1 var(--font-heading);
    letter-spacing: -.06em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

.project-one {
    background: linear-gradient(135deg, #0ea5e9, #075985);
}

.project-two {
    background: linear-gradient(135deg, #f59e0b, #b45309);
}

.project-three {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.project-four {
    background: linear-gradient(135deg, #f43f5e, #be123c);
}

.project-five {
    background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.project-six {
    background: linear-gradient(135deg, #475569, #0f172a);
}

.project-body {
    padding: 1.35rem;
}

.project-meta {
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.project-title {
    font: 700 1.2rem var(--font-heading);
    margin: .35rem 0 .5rem;
}

.project-body p {
    color: var(--text-muted);
    font-size: .91rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-list {
    list-style: none;
    display: grid;
    gap: 1.15rem;
    margin-top: 1.8rem;
}

.value-list li {
    padding-left: 2.2rem;
    position: relative;
    color: var(--text-secondary);
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: 800;
}

.about-panel {
    padding: 2.2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, #fff8e7, #e7f7ff);
    border: 1px solid var(--border-light);
}

.about-panel h3 {
    font: 800 1.8rem var(--font-heading);
    margin-bottom: 1rem;
}

.about-panel p {
    color: var(--text-secondary);
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mini-stat {
    background: rgba(255, 255, 255, .75);
    border-radius: var(--radius-md);
    padding: 1.1rem;
}

.mini-stat strong {
    display: block;
    color: var(--accent-gold);
    font: 800 1.8rem var(--font-heading);
}

.mini-stat span {
    color: var(--text-muted);
    font-size: .85rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 3.5rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-item {
    padding: 1.15rem 1.2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.contact-item strong {
    display: block;
    margin-bottom: .2rem;
}

.contact-item span {
    color: var(--text-muted);
    font-size: .92rem;
}

.contact-form {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: grid;
    gap: .45rem;
    margin-bottom: 1rem;
}

.field label {
    font-size: .9rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    font: inherit;
    color: var(--text-primary);
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: .8rem .9rem;
    width: 100%;
}

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

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {

    .portfolio-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 4rem 0;
    }
}

/* Responsive Styles for Hero & Grids */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subhead {
        margin: 0 auto 2.25rem auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2.35rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

.footer {
    background-color: var(--bg-surface);
    color: var(--text-primary);
    padding: 3rem 0;
    font-family: var(--font-body);
}



.footer a {
    color: #000000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #000000;
}

/* Footer logo text black */
.footer .nav-logo,
.footer .logo-text,
.footer .logo-text span {
    color: #000000 !important;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

/* Footer company name white */
.footer .company-name {
    color: #000000;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #000000;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }
}