
        .icon-circle {
        min-width: 16px;
        height: 16px;
        border: 1.5px solid var(--primary-color-2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: var(--primary-color-2);
        margin-right: 10px;
        margin-top: 3px;
        flex-shrink: 0;
        }

        .section {
        padding: 4rem 1rem;
        }

        section:nth-of-type(even) {
        background-color: #f5f5f5;
        }

        section:nth-of-type(odd) {
        background-color: #ffffff;
        }

        .section-title {
        text-align: center;
        margin-bottom: 3rem;
        }

        .section-title h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        color: var(--primary-color-1)!important;
        position: relative;
        display: inline-block;
        }

        .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
        }

        .section-title p {
        font-size: clamp(0.9rem, 2vw, 1.1rem); 
        color: var(--text-color);
        max-width: 700px;
        margin: 1rem auto 0;
        }

        .subtitle {
        /*font-size: 1.2rem;*/
        color: #e4af20; 
        margin: 0 0 8px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
		font-size: clamp(1rem, 2.5vw, 1.5rem);
        }

        .main-title {
        font-size: 4.5rem;
        font-weight: 700;
        color: #ffffff; 
        margin: 0 0 15px;
        line-height: 1.2;
		font-size: clamp(2rem, 5vw, 4rem);
        }

        .underline {
        width: 80px;
        height: 4px;
        background-color: #e4af20; 
        margin: 0 0 20px;
        border-radius: 2px;
        transition: all 0.3s ease;
        }

        .description {
        font-size: 1.5rem;
        color: #f7f7f7;
        margin: 0 0 30px;
        max-width: 700px;
        line-height: 1.6;
		font-size: clamp(1rem, 2.5vw, 1.5rem);
        }

        .btn-group {
        display: flex;
        gap: 15px;
        }

        .btn-accent {
        background-color: var(--accent-color);
        color: var(--light-text-color);
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(236, 178, 31, 0.3);
        transition: background 0.3s ease;
        display: inline-block;
        }

        .btn-accent:hover {
        background-color: #d6a012;
        }

        .btn-primary {
        background-color: var(--primary-color-2);
        color: var(--light-text-color);
        align-items: center;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: background 0.3s ease;
        display: block;
        }

        .btn-primary:hover {
        background-color: #d09a1a; 
        transform: translateY(-2px);
        }

        .btn-secondary {
        display: inline-block;
        padding: 12px 25px;
        text-decoration: none;
        align-items: center;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.7);
        }

        .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        }

        .program-buttons .btn-primary {
            flex: none; 
            display: inline-block;
            padding: 0.6rem 1.2rem;
            min-width: 140px;   
            text-align: center;
        }
        
        .container {
        max-width: 1200px; 
        margin: 0 auto;
        padding: 0 1rem;
        }
		.hero-container {
		  margin-left: 0;         /* buang center effect */
		  max-width: unset;       /* biar full lebar */
		  padding-left: 10%;      /* jarak dari kiri */
		  text-align: left;
		}


        .hero {
        position: relative;
        height: 100vh;
        min-height: calc(100vh - 80px); /* sisakan ruang header */
		padding-top: 80px;
        overflow: hidden;
        }

        .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        }

        .bg-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        }

        .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(30, 45, 58, 0.9) 0%, 
            rgba(46, 62, 78, 0.8) 50%, 
            rgba(228, 175, 32, 0.3) 100%);
        z-index: 2;
        }

        .hero-content {
        position: relative;
        z-index: 3;
        height: 100%;
        display: flex;
        align-items: center;
        color: white;
        padding-left: 0!important; 
        }

        .hero-content .container {
        margin: 15;        
        max-width: none;  
        padding-left: 10%; 
        }

        .hero-header {
            text-align: left;
            margin-bottom: 30px;
            max-width: none;
        }

        .section-title {
        text-align: center;
        margin-bottom: 3rem;
        }
        .section-title h2 {
        font-size: 2.5rem;
        color: var(--secondary-color-3);
        position: relative;
        display: inline-block;
        }
        .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
        }
        .section-title p {
        font-size: 1.1rem;
        color: var(--text-color);
        max-width: 700px;
        margin: 1rem auto 0;
        }
        .logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        align-items: center;
        }
        .logo-grid img {
        height: 100px;
        transition: transform 0.3s ease;
        }
        .logo-grid img:hover {
        transform: scale(1.1);
        }
        .why-sahabatqu .container{background:linear-gradient(135deg,#1D5D85 0%,#2C7B80 100%);color:#fff;padding:2rem 1.5rem;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,0.1);max-width:1200px;margin:auto}
        .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
        .why-card{background:#fff;color:#20333D;border-radius:8px;padding:2rem;text-align:center;box-shadow:0 4px 15px rgba(0,0,0,0.1);transition:0.3s ease;position:relative;overflow:hidden;opacity:0;transform:translateY(20px)}
        .why-card.visible{opacity:1;transform:translateY(0);transition:0.6s ease-out}
        .why-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(135deg,var(--primary-color-1),var(--secondary-color-2));opacity:0;z-index:-1;border-radius:8px;transition:0.3s ease}
        .why-card:hover{transform:translateY(-10px);box-shadow:0 15px 30px rgba(0,0,0,0.15)}
        .why-card:hover::before{opacity:0.05}
        .why-card i{font-size:2.5rem;color:var(--primary-color-1);margin-bottom:1rem;transition:0.3s ease}
        .why-card:hover i{color:var(--accent-color);transform:scale(1.2)}
        .why-card h3{font-size:1.5rem;margin-bottom:1rem;color:#1D5D85}
        .why-card:hover h3{color:var(--accent-color)}
        .why-card p{font-size:1rem;color:#333}

        .program.container{background:linear-gradient(135deg,#1D5D85 0%,#2C7B80 100%);color:#fff;padding:2rem 1.5rem;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,0.1);max-width:1200px;margin:auto}

        .program {
            background-color: #fff;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
            opacity: 1;
            visibility: visible;
            }
        .program.hidden {
            opacity: 0;
            visibility: hidden;
            height: 0;
            margin: 0;
            padding: 0;
            border: none;
            overflow: hidden;
            }
        .program:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }
        .program img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            }
        .program-content {
            padding: 1.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            }
        .program-content p {
            flex-grow: 1;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            color: var(--text-color);
            }
        .program-footer {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: flex-start;
            margin-top: auto;
            }
        .program-footer .btn {
            flex: 1 1 auto;
            min-width: 140px;
            text-align: center;
            }
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /*repeat(4, 1fr);*/
            gap: 2rem;
            }

        .program-card {
            background-color: var(--background-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            transform: translateY(0);
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            }

        .program-card.visible {
            opacity: 1;
            transform: translateY(0);
            }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            }

        .program-image {
            width: 100%;
            aspect-ratio: 16 / 9; 
            border-radius: 8px 8px 0 0;
            height: 180px;
            overflow: hidden;
            }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            }

        .program-card:hover .program-image img {
            transform: scale(1.1);
        }

        .program-content {
            padding: 1.25rem;
        }

        .program-content h3 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 0.75rem;
            color: var(--secondary-color-3);
            transition: color 0.3s ease;
        }

        .program-card:hover .program-content h3 {
            color: var(--accent-color);
            }

        .program-content p {
            font-size: clamp(0.8rem, 2vw, 0.95rem);
            color: #333;
            margin-bottom: 1.25rem;
        }

        .program-buttons {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
        }

        .program-buttons a {
        text-decoration: none;
        }

        .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        }

        .facility-card {
        background-color: var(--background-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        }

        .facility-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color-1), var(--secondary-color-2));
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease;
        }

        .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .facility-card:hover::before {
        opacity: 0.05;
        }

        .facility-image {
        height: 180px;
        overflow: hidden;
        }

        .facility-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        }

        .facility-card:hover .facility-image img {
        transform: scale(1.1);
        }

        .facility-content {
        padding: 1.25rem;
        transition: all 0.3s ease;
        }

        .facility-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        color: var(--secondary-color-3);
        transition: color 0.3s ease;
        }

        .facility-card:hover .facility-content h3 {
        color: var(--accent-color);
        }

        .facility-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        color: #333;
        }

        .facility-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        }

        .facility-buttons a {
        font-size: 0.9rem;
        color: var(--primary-color-1);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
        }

        .facility-card:hover .facility-buttons a {
        color: var(--accent-color);
        }

        .faq-grid {
        display: flex;
        gap: 2rem;
        align-items: stretch;
        }
        .faq-content,
        .faq-image {
        flex: 1;
        }
        .faq-item {
        background: var(--background-color);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.4s ease;
        margin-bottom: 1rem;
        }
        .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        .faq-question {
        padding: 1.25rem;
        background: var(--primary-color-2);
        color: var(--light-text-color);
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background 0.3s ease;
        }
        .faq-question:hover {
        background: var(--primary-color-1);
        }
        .faq-icon {
        transition: transform 0.3s ease;
        }
        .faq-question.active .faq-icon {
        transform: rotate(180deg);
        }
        .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        padding: 0 1.25rem;
        transition: all 0.4s ease;
        font-size: 0.95rem;
        }
        .faq-answer.active {
        padding: 1.25rem;
        max-height: 300px;
        }
        .faq-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .faq-button-container {
        margin-top: 1.5rem;
        text-align: center;
        }
        .show-all-btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background-color: var(--accent-color);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .show-all-btn:hover {
        background-color: #d4a017;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        color: var(--text-color);
        }
        .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        animation: fadeIn 1s ease-out;
        }

        .testimonial-card {
        background-color: var(--background-color);
        border-radius: 8px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        transform: translateY(0);
        position: relative;
        overflow: hidden;
        z-index: 1;
        }

        .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--secondary-color-2) 100%);
        opacity: 0;
        z-index: -1;
        border-radius: 8px;
        }

        .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card:hover::before {
        opacity: 0.05;
        }

        .testimonial-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.25rem;
        transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-header {
        transform: scale(1.05);
        }

        .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 1rem;
        transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-avatar {
        transform: scale(1.1);
        }

        .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

        .testimonial-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
        transition: all 0.3s ease;
        }

        .testimonial-info p {
        font-size: 0.9rem;
        color: #666;
        transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-info h4,
        .testimonial-card:hover .testimonial-info p {
        color: var(--accent-color);
        }

        .testimonial-content {
        font-style: italic;
        line-height: 1.8;
        transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-content {
        transform: scale(1.02);
        }

        #wa-button-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            font-family: Arial, sans-serif;
        }

        #wa-message {
            background-color: #25D366;
            color: white;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            max-width: 240px;
            position: relative;
            display: none;
            animation: fadeIn 0.4s ease forwards;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
            margin-bottom: 10px;
        }

        #wa-message::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 10px solid #25D366;
        }

        #wa-button img {
            width: 48px;
            height: 48px;
            cursor: pointer;
        }
        @keyframes fadeIn {
            from {
            opacity: 0;
            transform: translateY(10px);
            }
            to {
            opacity: 1;
            transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .container { padding: 0 60px; }
            .main-title { font-size: 3rem; }
            .description { font-size: 1rem; }
        }

        @media (max-width: 1024px) {
			.main-title { font-size: 2.8rem; }
            .description { font-size: 0.975rem; }
            .section-title h2 { font-size: 2rem; }
            .why-card h3 { font-size: 1.3rem; }
            .section-title p,
            .why-card p { font-size: 0.95rem; }
        }

        @media (max-width: 992px) {
            .container { padding: 0 50px; }
            .hero-section { min-height: 700px; }
            .main-title { font-size: 2.6rem; }
            .description { font-size: 0.95rem; }

            .section-title h2 { font-size: 2.2rem; }
            .section-title p { font-size: 1rem; }

            .logo-grid img { height: 90px; }
            .programs-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

            .faq-grid { flex-direction: column; }
            .faq-image img { height: auto; max-height: 400px; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 30px; }
            .hero-section { min-height: 700px; }
            .main-title { font-size: 2.2rem; line-height: 1.1; }
            .subtitle { font-size: 0.9rem; }
            .description { font-size: 0.9rem; line-height: 1.5; }
            .btn-group { flex-direction: column; gap:10px; width: 100%; }
            .btn-primary, .btn-secondary { width: 100%; max-width: 200px; font-size: 0.9rem; }

            .section { padding: 3rem 1rem; }
            .section-title { margin-bottom: 2.5rem; }
            .section-title h2 { font-size: 2rem; }
            .section-title p { font-size: 0.95rem; max-width: 600px; }

            .logo-grid { gap: 30px; }
            .logo-grid img { height: 80px; }

            .why-grid { grid-template-columns: 1fr; }
            .why-card h3 { font-size: 1.2rem; }
            .why-card p { font-size: 0.9rem; }
            .why-card i { font-size: 2rem; }

            .programs-grid { grid-template-columns: 1fr; }
            .program-buttons {flex-direction: column; align-items: center; gap: 10px;}
            .program-buttons .btn-primary {width: 100%; max-width: none;text-align: center; display: block;}
            .facilities-grid { grid-template-columns: 1fr; }

            #wa-button img { width: 40px; height: 40px; }
            #wa-message { font-size: 13px; max-width: 200px; }
            #wa-message::after { right: 16px; }
        }

        @media (max-width: 576px) {
            .section { padding: 2.5rem 1rem; }
            .section-title { margin-bottom: 2rem; }
            .section-title h2 { font-size: 1.8rem; }
            .section-title h2::after { width: 60px; bottom: -8px; }
            .section-title p { font-size: 0.9rem; max-width: 100%; padding: 0 1rem; }

            .logo-grid { gap: 25px; }
            .logo-grid img { height: 70px; }

            .programs-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .container { padding: 0 20px; }
            .hero-section { min-height: 600px; }
            .main-title { font-size: 1.6rem; }
            .description { font-size: 0.85rem; }
            .btn-primary, .btn-secondary { max-width: 250px; font-size: 0.85rem; }

            .section { padding: 2rem 1rem; }
            .section-title h2 { font-size: 1.6rem; }
            .section-title p { font-size: 0.85rem; }

            .logo-grid { gap: 20px; }
            .logo-grid img { height: 60px; }
        }

        @media (max-width: 360px) {
            .container { padding: 0 15px; }
            .hero-section { min-height: 550px; }
            .main-title { font-size: 1.3rem; }
            .subtitle { font-size: 0.8rem; }
            .description { font-size: 0.8rem; }
            .btn-primary, .btn-secondary { max-width: 220px; font-size: 0.8rem; }

            .why-card h3 { font-size: 1rem; }
            .why-card p { font-size: 0.85rem; }
            .why-card { padding: 1.5rem; }
        }