:root {
    --primary-color: #00a650;
    --secondary-color: #333;
    --light-color: #fff;
    --dark-color: #222;
    --transition-speed: 0.3s ease-in-out;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- HERO/BANNER --- */
.pmc-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}
.pmc-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pmc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(34, 34, 34, 0.6) 0%,
        rgba(34, 181, 115, 0.25) 100%
    );
    z-index: 2;
    pointer-events: none;
}
.pmc-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
}
.pmc-hero-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.pmc-hero-subhead {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}
.pmc-hero-btn {
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 32px;
    padding: 0.75rem 2.2rem;
    background: #22b573;
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(34, 181, 115, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    outline: none;
}
.pmc-hero-btn:hover,
.pmc-hero-btn:focus {
    background: #1e8e3e;
    box-shadow: 0 4px 24px rgba(34, 181, 115, 0.18);
    color: #fff;
}
.pmc-hero-btn:active {
    background: #158a4c;
}

@media (max-width: 768px) {
    .pmc-hero-title {
        font-size: 2rem;
    }
    .pmc-hero-content {
        padding: 0 0.5rem;
    }
}

/* --- CTA SECTION --- */
.pmc-cta-section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(40, 60, 90, 0.07);
    padding: 3.5rem 1.5rem;
    margin: 0 auto 2.5rem auto;
    max-width: 700px;
    text-align: center;
    position: relative;
    overflow: visible;
}
.pmc-cta-bg {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 60% 40%, #22b57322 0%, #fff0 100%);
    z-index: 0;
    pointer-events: none;
}
.pmc-cta-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #22b573;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}
.pmc-cta-text {
    font-size: 1.15rem;
    color: #222;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.pmc-cta-btn {
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 32px;
    padding: 0.75rem 2.2rem;
    background: #22b573;
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(34, 181, 115, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    outline: none;
    position: relative;
    z-index: 1;
}
.pmc-cta-btn:hover,
.pmc-cta-btn:focus {
    background: #1e8e3e;
    box-shadow: 0 4px 24px rgba(34, 181, 115, 0.18);
    color: #fff;
}
.pmc-cta-btn:active {
    background: #158a4c;
}

/* --- STICKY/PARALLAX BG EFFECT --- */
.pmc-sticky-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(34, 181, 115, 0.08) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.7;
    will-change: transform;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .pmc-sticky-bg {
        position: absolute;
        height: 400px;
        opacity: 0.3;
    }
}
/* Press & Media Coverage Custom Styles */
.press-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px; /* Adjusted from 780px to better show the buttons */
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}
.hero-slider,
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px; /* Increased from 500px to give more space */
}
.hero-slide {
    opacity: 0;
    transition: opacity 1s;
    background-size: cover;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 550px; /* Increased from 500px to match */
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-content {
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px; /* Increased from 500px to match */
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-wrap {
    position: absolute;
    bottom: 100px; /* Adjusted from -150px which was too far down */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
}

@media (max-width: 768px) {
    .hero-btn-wrap {
        bottom: 75px; /* Adjusted from -170px which was too far down */
    }
    
    .about-jesse-section {
        padding: 3rem 0 4rem; /* Adjusted from 9rem to accommodate the new button position */
    }
    
    .press-hero-banner {
        min-height: 300px; /* Adjusted from 850px which was too tall */
    }
}
/* IVS Highlights Section */
.pmc-highlights-section {
    background: #f8f9fa;
}
.pmc-highlight-card {
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(40, 60, 90, 0.07);
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
    border: 1px solid #e3e3e3;
}
.pmc-highlight-card:hover {
    box-shadow: 0 4px 24px rgba(34, 181, 115, 0.12);
    border-color: #22b573;
}
.pmc-highlight-icon {
    color: #22b573;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pmc-highlight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}
.pmc-highlight-desc {
    font-size: 0.98rem;
    color: #444;
}
.pmc-logo {
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.pmc-logo:hover {
    filter: none;
}

/* Testimonial Section */
.pmc-testimonial-section {
    background: #fff;
}
.pmc-testimonial-card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(40, 60, 90, 0.07);
    background: #fff;
    border: 1px solid #e3e3e3;
    position: relative;
    overflow: visible;
}
.pmc-quote-mark {
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 4rem;
    color: #e3e3e3;
    font-family: serif;
    z-index: 1;
    opacity: 0.5;
}
.pmc-testimonial-text {
    font-size: 1.25rem;
    color: #222;
    font-style: italic;
    z-index: 2;
    position: relative;
}
.pmc-testimonial-footer {
    font-size: 1rem;
    color: #22b573;
    font-weight: 600;
    z-index: 2;
}
.pmc-testimonial-source {
    color: #22b573;
    font-weight: bold;
    font-size: 1rem;
}
.pmc-testimonial-year {
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pmc-highlight-card {
        padding: 1.5rem 1rem;
    }
    .pmc-testimonial-card {
        padding: 2rem 1rem;
    }
    .pmc-quote-mark {
        font-size: 2.5rem;
        top: 8px;
        left: 12px;
    }
}
/* Press & Media Coverage Custom Styles */
.hero-banner {
    position: relative;
    min-height: 400px;
    background: #222;
}
.hero-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-banner h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-banner p {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 1rem;
}
.media-card {
    border: 1px solid #e3e3e3;
    border-radius: 0;
    background: #fff;
    transition: box-shadow 0.2s;
}
.media-card:hover {
    box-shadow: 0 4px 24px rgba(34, 181, 115, 0.12);
    border-color: #22b573;
}
.media-card img {
    max-height: 48px;
    margin-bottom: 1rem;
}
.media-card h3 {
    color: #22b573;
    font-weight: 600;
    font-size: 1.2rem;
}
.media-card .btn-primary {
    background: #22b573;
    border: none;
    border-radius: 0;
}
.section-title {
    color: #00a650;
    font-weight: 700;
    font-size: 2rem;
}
.gallery-section img {
    border-radius: 0;
    border: 2px solid #22b573;
    box-shadow: 0 2px 12px rgba(34, 181, 115, 0.08);
}
.quotes-section blockquote {
    background: #f8f8f8;
    border-left: 5px solid #22b573;
    padding: 2rem;
    font-size: 1.2rem;

    /* YouTube Video Section */
    .youtube-section {
        padding: 4rem 0;
        background: #fff;
    }
    .youtube-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 16px rgba(40, 60, 90, 0.1);
        transition: transform 0.3s ease;
    }
    .youtube-container:hover {
        transform: translateY(-5px);
    }
    .youtube-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: filter 0.3s;
    }
    .youtube-thumbnail:hover {
        filter: brightness(0.8);
    }
    .youtube-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 68px;
        height: 48px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
        pointer-events: none;
    }
    .youtube-play-button::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 20px;
        border-color: transparent transparent transparent #fff;
    }
    .youtube-thumbnail:hover + .youtube-play-button {
        background: #22b573;
    }
    .youtube-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Blog Section */
    .blog-section {
        padding: 4rem 0;
        background: #f8f9fa;
    }
    .blog-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(40, 60, 90, 0.07);
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
    }
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(34, 181, 115, 0.15);
    }
    .blog-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .blog-content {
        padding: 1.5rem;
    }
    .blog-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    .blog-excerpt {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    .blog-meta {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 1rem;
    }
    .blog-button {
        background: #22b573;
        color: #fff;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 600;
        transition: background 0.2s;
    }
    .blog-button:hover {
        background: #1e8e3e;
        color: #fff;
        text-decoration: none;
    }

    /* About Jesse Section */
    .about-jesse-section {
        padding: 5rem 0 4rem; /* Adjusted from 7rem to match new button position */
        background: #fff;
    }
    .jesse-photo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
    }
    .jesse-photo {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        height: 0;
        padding-bottom: 100%;
    }
    .jesse-photo img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    .jesse-photo:hover img {
        transform: scale(1.05);
    }
    .jesse-photo.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .about-jesse-content h3 {
        color: #22b573;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    .about-jesse-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 1.2rem;
    }
    .about-jesse-content .btn {
        margin-top: 1rem;
    }
    color: #222;
}
.cta-section {
    background: linear-gradient(90deg, #22b573 0%, #1e8e3e 100%);
    color: #fff;
    border-radius: 0;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: bold;
}
.cta-section p {
    font-size: 1.1rem;
}
.cta-section .btn-success {
    background: #fff;
    color: #22b573;
    font-weight: bold;
    border-radius: 0;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .hero-banner img {
        height: 220px;
    }
    .hero-banner h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
}

.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9; /* jaga proporsi */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-embed .video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Logo Marquee Animation */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.logo-marquee-reverse .logo-marquee-track {
    animation-direction: reverse;
}

.logo-marquee-item {
    flex: 0 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

/* CTA Section */
.press-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../images/IMG_2620.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--light-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.press-cta h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.press-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta,
.btn-cta-alt {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    border-radius: 0;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-cta-alt {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-cta-alt:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn1-hero,
.btn1-hero-outline {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn1-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn1-hero:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn1-hero-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn1-hero-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-card:hover .blog-button span {
    width: 100%;
}

.blog-title {
    color: #2d3748;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
    color: #22b573;
}

/* Add hover effect for image link indicator */
.blog-image-container a:hover .image-hover-indicator {
    opacity: 1;
}

.blog-image-container a:hover img {
    filter: brightness(0.85);
}

/* Video embed responsive styles */
.about-jesse-section .video-embed.tp-video-large {
    margin: 0;
    height: 100% !important;
}

@media (min-width: 992px) {
    .about-jesse-section .row {
        min-height: 380px;
        align-items: center;
    }
    
    .about-jesse-section .col-lg-7 {
        display: flex;
        height: 100%;
    }
    
    .about-jesse-section .video-embed.tp-video-large {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .blog-image-container {
        height: 180px !important;
    }
    
    .image-hover-indicator {
        width: 40px !important;
        height: 40px !important;
    }
    
    .image-hover-indicator i {
        font-size: 16px !important;
    }
}

/* --- Logo Marquee for AS SEEN IN Section --- */
.press-logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    padding: 15px 0;
    border-radius: 8px;
}

.press-marquee-container {
    display: flex;
    width: 100%;
}

.press-marquee-content {
    display: flex;
    animation: pressMarqueeScroll 30s linear infinite;
    margin-right: 30px;
}

.press-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    transition: all 0.3s ease;
}

.press-logo-item img {
    max-height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.press-logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

@keyframes pressMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

/* Pause animation on hover */
.press-logo-marquee:hover .press-marquee-content {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .press-logo-item {
        padding: 0 15px;
    }
    
    .press-logo-item img {
        max-height: 24px;
    }
    
    .press-marquee-content {
        animation-duration: 20s;
    }
    
    .btn1-hero, 
    .btn1-hero-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

.role-title{
  margin: 24px 0 28px;
  padding: 6px 0;
  line-height: 1.35;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem); /* mengecil otomatis di layar kecil */
  letter-spacing: .2px;
}
@media (max-width: 576px){
  .role-title{ margin: 18px 0 22px; line-height: 1.4; }
}
